Click here to Skip to main content
15,885,366 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi In one page to another page in asp.net page cann't reload or refresh. it will without refresh go to second page .aspx.


Thanks Advance Friends...
Posted
Updated 18-Sep-20 4:00am
Comments
ZurdoDev 25-Mar-13 7:54am    
What?
Raje_ 25-Mar-13 8:16am    
You can't. To redirecting a page you need a full postback.
Rekhash 25-Mar-13 8:18am    
in aspx page- one page to another page(page cannot relaod or refresh).
In Eg: First page(.aspx ) to another page(.aspx ).in first page in submit button to go another
page.it wont refresh page. @ryanb31
Rekhash 25-Mar-13 8:19am    
No. we can use ajax or jquery in asp.net @Raje
Raje_ 25-Mar-13 8:53am    
Even if you use Ajax or Jquery, the browser will definatly refresh. but you can avoid running your server side code using javascript or jquery. use window.open("your url") or location.href = "your url"; of javascript, if you want to redirect a page from client side. One more thing you can do is, use Update Panel and in update panel take iframe and open your page inside that iframe.

 
Share this answer
 
Comments
Raje_ 25-Mar-13 9:06am    
Are you sure It will not refresh the page?
RajeshRaushan 25-Mar-13 9:21am    
Which page? If you do it from client side then the postback will not happen for the first-page. The 2nd page you are redirecting - so that is expected to load anyway.
The question isn't very clear in that sense - let me know if it is asking for something else.
As I said You can not redirect to another page without postback.
However there is trick which you can use for a better user experience, Do remember, it would not avoid the postback but it would not cause any flicker in your screen. You can place these two tags at the head of your HTML dcocument :-

HTML
<META http-equiv="Page-Enter" content="blendTrans(Duration=0.2)">
<META http-equiv="Page-Exit" content="blendTrans(Duration=0.2)">


One more thing, these code might not work in some browsers. but In IE it will work.

Good luck.
 
Share this answer
 
v2

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