VS 2010では、
<%@ Page Language="VB" Buffer="true" ContentType="image/jpeg" %>
に相当
<%@ Page Language="VB" %>
<%
Response.BufferOutput = True
Response.ContentType = "image/jpeg"
%>
?
ありがとう!
VS 2010では、
<%@ Page Language="VB" Buffer="true" ContentType="image/jpeg" %>
に相当
<%@ Page Language="VB" %>
<%
Response.BufferOutput = True
Response.ContentType = "image/jpeg"
%>
?
ありがとう!