Click here to Skip to main content
15,887,683 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
==> code for go in next page without process(reloading) ???

is it possible ???
Posted
Comments
JoCodes 27-Jan-14 4:33am    
Not clear what your question is

use HyperLink Control and mention your URL in the NavigateUrl property

ASP.NET
<asp:hyperlink id="hyp" text="go to Next Page" runat="server" xmlns:asp="#unknown">NavigateUrl="~/NextPage.aspx"></asp:hyperlink>
 
Share this answer
 
Yes, with a thing called ajax. jQuery can help you quite a bit with this.

Here's an example using jQuery.
JavaScript
$.ajax({
    type: "POST",
    url: "<url you are looking up>"
})
.done(function (msg) {
    //msg contains the server's response
});


Notes that this is not ideal for whole pages; it is better suited to small page updates
 
Share this answer
 
v3

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