[CLOSED] Differences between X.Redirect and Response.Redirect

  1. #1

    [CLOSED] Differences between X.Redirect and Response.Redirect

    Hi!

    What are the differences between them?

    Thanks
    Last edited by Daniil; May 10, 2012 at 5:11 PM. Reason: [CLOSED]
  2. #2
    Hi,

    Response.Redirect is a classic ASP.NET thing.
    http://msdn.microsoft.com/en-us/libr...vs.100%29.aspx

    ASP.NET performs the redirection by returning a 302 HTTP status code.

    X.Redirect is an Ext.NET thing. Generally, it just generates
    window.location = 'new url';
    to redirect a page. Also it allows to mask a page before redirection.

    Hope this helps.
  3. #3
    Quote Originally Posted by Daniil View Post
    Hi,

    Response.Redirect is a classic ASP.NET thing.
    http://msdn.microsoft.com/en-us/libr...vs.100%29.aspx

    ASP.NET performs the redirection by returning a 302 HTTP status code.

    X.Redirect is an Ext.NET thing. Generally, it just generates
    window.location = 'new url';
    to redirect a page. Also it allows to mask a page before redirection.

    Hope this helps.

    Thank you!

Similar Threads

  1. login & response.redirect
    By svk in forum 1.x Help
    Replies: 2
    Last Post: Jan 17, 2013, 6:10 AM
  2. [CLOSED] Problem with Response.Redirect
    By supera in forum 2.x Legacy Premium Help
    Replies: 6
    Last Post: Feb 06, 2012, 11:55 AM
  3. TabPanel & 'Response.Redirect' problem
    By unaltro2 in forum 1.x Help
    Replies: 1
    Last Post: Oct 21, 2011, 8:19 AM
  4. problem with Response.Redirect
    By kiran malgi in forum 1.x Help
    Replies: 0
    Last Post: Mar 20, 2010, 2:42 AM
  5. Response.Redirect during AjaxMethod call
    By Dgsoft.ru in forum 1.x Help
    Replies: 5
    Last Post: Jul 14, 2009, 7:01 AM

Tags for this Thread

Posting Permissions