asp.net - ajax and javascript for redirecting between two pages with an intermediate page. also using C# -
i have seen design on web quite often:-
there exists initial page (say 1.aspx).
there exists final page (say 3.aspx).
normally redirect via javascript:-
<a href="3.aspx" runat="server">go final page..</a>
but want add intermediate feature, allows client presented intermediate web form, asking checkbox selections, before being redirected final page(3.aspx).
i want intermediate web form pop up, animated in center of screen, while initial page (1.aspx) goes background...once user has checked appropriate checkboxes , presssed submit, want pass information via session key 3.aspx , redirect.
can point me right direction? ajax? jquery?
you can put intermediate features inside div, set "display: none;" hide until ready it.
rather linking page 3.aspx when clicking on words "go final page..", can use javascript display , position div (there 3rd party products make doing easier) user can fill in checkboxes, being displayed on screen.
inside div button postback, saves whatever needs session, , "response.redirect("3.aspx");", final page can displayed.
Comments
Post a Comment