I Need to make a webpage. asp.net
this开发者_运维百科 webpage recieve parameter by using Request.Querystring
and Redirect webpage.
in this page, no need to render.
what should I write code in .aspx file?
does this aspx file need html tag?
or
only <%@ Page %>
need to be coded?
You should use a Asp.net HttpHandler(ashx file). This way there will be no aspx tags and you will get the redirection done in code-behind only
精彩评论