| re: Seeting the value of ASP variable from other page
hay thanks for your reply...
actually i am using session only for storing.
<a href ="<%=mylink1 %>" target="contentFrame" onclick="javascript:window.location.reload()" ><% Response.Write("Next")%> </a>
where mylink1 is variable holding the current page loaded in contentFrame. but it needs to refresh and hold new page value when it loads in contentFrame.
actually i have 3 frame. left frame will be the index frame and has tree structure of index and right frame is content frame so depending on the page selected in index frame contents will be loaded...
the bottom frame has next and previous buttons. i need to store current loaded page of content frame in session and use that in next buttons..
<a href ="<%=mylink1 %>" target="contentFrame" onclick="javascript:window.location.reload()" ><% Response.Write("Next")%> </a>
but after the next button click the session page value will not be reassigned to the new loaded page..
can you please help in this regard as to where exactly i need to give page refresh or page reload or any other logic.
|