Click here to Skip to main content
15,890,512 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi i have a page which captures clients basic requirements , process it out . i want to display the result in another window or in another tab how to do it that
Posted

You can achieve this through many ways like using Jquery, Javascript or server side (C#).

Suppose you are taking all inputs and then submitting the page for process and finally you want to display result in other window. So just use Windows.Open() method inside Response.Write(...) after the all process as:

C#
Response.Write("window.open('info.aspx')"); 
 
Share this answer
 
Comments
anoop_vip 20-Nov-11 0:18am    
not working can u specify more
Hi vip,
Click here[^]
I hope you understand.
 
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