i

ASP.Net A Complete Guide

Redirection

Redirection means jumping from one page(URL) to another page(URL). The HTTP response class's Redirect method will help in this. Please keep in mind that redirection always involves an HTTP GET request.

The below example shows how we can redirect to a new URL  

Response.Redirect ("{String} URL Name");

Below example shows how we can redirect to new URL with parameter.

Response.Redirect ("{String} URL Name",{Boolean});