C
cmay
Does anyone know the difference between these two?
Response.Redirect( "http://site.com/newlink.aspx");
and
Response.RedirectLocation = "http://site.com/newlink.aspx";
Response.End();
Response.Redirect( "http://site.com/newlink.aspx");
and
Response.RedirectLocation = "http://site.com/newlink.aspx";
Response.End();