Asp To Asp.Net
-
I have a application on asp.in it there is a button.on click event of that button aspx page is open. asp uses some user id and password. how i will retain that user id and password in the aspx page. when page transfer from asp to aspx it lost all the session. and according to user id i have ti fill some data to the aspx page. can any one tell me how i retain session when i transfer asp page to aspx page. thanks
-
I have a application on asp.in it there is a button.on click event of that button aspx page is open. asp uses some user id and password. how i will retain that user id and password in the aspx page. when page transfer from asp to aspx it lost all the session. and according to user id i have ti fill some data to the aspx page. can any one tell me how i retain session when i transfer asp page to aspx page. thanks
There can be two ways one way is to send this user ID as quesrystring to the aspx page (assuming that this is not at all a vital data which are not supposed to be known to the users). And in the aspx page you can retrieve the ID and get the related data. Second way can be to share the session between both the application. Here[^] is an article which can give an idea on how to proceed for this.
Apurva Kaushal