close window and redirect to another site
-
I want to close my page and open another url outside of my local pages. example page1.aspx(close) www.google.com(open) when i use the server.Transfer it wont do it? Thanks in advance.
-
I want to close my page and open another url outside of my local pages. example page1.aspx(close) www.google.com(open) when i use the server.Transfer it wont do it? Thanks in advance.
you can't server.transfer to a file outside of your web app
brsecu wrote:
I want to close my page and open another url outside of my local pages.
?? ...just link to it...
-
you can't server.transfer to a file outside of your web app
brsecu wrote:
I want to close my page and open another url outside of my local pages.
?? ...just link to it...
-
Yes but how. I know it seems like a simple question but I want to do it out of the aspx.cs code not html. How do i link to it.
Response.Redirect("http://www.google.com"); for example... is that what you want?
-
Response.Redirect("http://www.google.com"); for example... is that what you want?