Click here to Skip to main content
15,897,704 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all

I have to open a new web form from a folder user:
Response.Redirect("~/User/Vender.aspx");

but it does not works.
Posted
Updated 18-Sep-10 1:00am
v2

Response.Redirect will open the directed page in the same window. If you want to open a new form then you need to use JavaScript and use Window.Open[^] method to open it.
 
Share this answer
 
<a href="~/User/Vender.aspx"  target="_blank" >Link Name </a>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900