在 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"
%>
?
谢谢!