Click here to Skip to main content
16,022,536 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello Everybody

I am new in .Net.

What I want to do is:
If I am working on one web page and I want to open another web page in the first web page with out disturbing the data field in first page then how can I do that?

Please help me.
Is there an article on this?

Thank you
Posted
Updated 26-Jul-10 0:21am
v3
Comments
Sandeep Mewara 26-Jul-10 6:08am    
You need to be more clear on your scenario. What do you mean by - "Open other page without disturbing data"?
Dalek Dave 26-Jul-10 6:21am    
Edited for Readability, Spelling and Grammar
koool.kabeer 26-Jul-10 8:30am    
MORE ClEARED PLEASE

Hi write Javascript function using below code

<br />
window.location("URL");<br />


where URL is the page you want to open
 
Share this answer
 
You question is a little unclear, but if you mean how can you write a link that opens a page whilst keeping the original page unchanged then a target blank link will open the next page in a new tab.

Use like this:

XML
<A HREF="newwindow.html" TARGET="_blank">a new window</A>



Hope that helps.
 
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