{
///
/// If you don't specify a target or you specify the target to be "_self",
/// then it will redirect within the current window, so a regular Response.Redirect occurs.
/// If you specify a different target, like "_blank", or if you specify window features,
/// then you want to redirect to a new window, and we write out the appropriate script.
///
///
///
///
public void Redirect(string url, string target, string windowFeatures)
{
HttpContext context = HttpContext.Current;
if ((String.IsNullOrEmpty(target)
target.Equals("_self", StringComparison.OrdinalIgnoreCase)) &&
String.IsNullOrEmpty(windowFeatures))
context.Response.Redirect(url);
else
{
Page page = (Page)HttpContext.Current.Handler;
if (page == null)
throw new InvalidOperationException("Cannot redirect to new window outside Page context.");
url = page.ResolveClientUrl(url);
string script;
if (!String.IsNullOrEmpty(windowFeatures))
script = @"window.open(""{0}"", ""{1}"", ""{2}"");";
else
script = @"window.open(""{0}"", ""{1}"");";
script = String.Format(script, url, target, windowFeatures);
ScriptManager.RegisterStartupScript(page, typeof(Page), "Redirect", script, true);
}
}

4 comments:
I found this site using [url=http://google.com]google.com[/url] And i want to thank you for your work. You have done really very good site. Great work, great site! Thank you!
Sorry for offtopic
Who knows where to download XRumer 5.0 Palladium?
Help, please. All recommend this program to effectively advertise on the Internet, this is the best program!
church of christ singles [url=http://loveepicentre.com/]farmer singles in england[/url] updating graphics card in wxp http://loveepicentre.com/ virtual chat community for christian singles
car audio for subaru legacy [url=http://www.cardvdplanet.com/7-inch-car-dvd-player-build-in-tv-tuner-fm--discount-price108.html]kansas city auto audio[/url] car audio subwoofers auto cheap insurance http://www.cardvdplanet.com/9-0-inch-roof-mounting-dvd-player-fm-with-tv--discount-price69.html cathedral city auto audio store
sony auto dvd players [url=http://www.cardvdplanet.com/car-radio-with-usb-sd-mmc-card-cd152--discount-price43.html]beststuff fuel car dvd ipod vacation houseboat lake powell home[/url] vintage car auto audio http://www.cardvdplanet.com/car-video-dvd-player-single-din-7-inch--discount-price83.html audiovox auto dvd
auto audio systems [url=http://www.cardvdplanet.com/car-dvd-player-with-fm-function-cd141--discount-price60.html]ho auto audio[/url] beststuff fuel car dvd ipod vacation houseboat lake powell home http://www.cardvdplanet.com/?action=products&save_s_prm=1&pr_sort_=price car audio 1995 infiniti j30
Post a Comment