Session when navigating html and ASP.NET pages?

I have this problem: Due to design issues, the ASP.NET web page I'm currently creating needs to be inside an iframe in the HTML page. I have to save the session to store some variables if the user comes back to my ASP page, but I notice that as soon as I go to HTML, the session dies. I was thinking of using cookies to store information, but I would like to hear someone else's opinion first.

+3


source to share


1 answer


It should work to request the same page from the iframe, if the user is the same as the iframe request, using a custom browser that will still have a session.

Are you sure this isn't something as simple as an iframe pointing to a page login or something?



Is the iframe a URL attribute or is the iframe server content loading?

+2


source







All Articles