Al Programming
Free source code programming in C#, VB.Net, Java, SQL
Search This Blog
Thursday, December 13, 2012
Response.Redirect asp.net
Redirects a client to a new URL. Specifies the new URL and whether execution of the current page should terminate.
Parameters
url
The target location.
endResponse
Indicates whether execution of the current page should terminate.
bool
continue;
// some code
if
(continue)
{
Response.Redirect
("page.aspx"
,
false
);
}
else
{
Response.End();
}
Newer Post
Older Post
Home