My website login page is in jsp & some of modules in .net , So i want pass the session to .aspx page so that access those module
Thanks in advance
My website login page is in jsp & some of modules in .net , So i want pass the session to .aspx page so that access those module
Thanks in advance
You cannot do that. Your best bet is passing it as request parameter. If the data is too large to pass as request parameter, then let them share a datasource which JSP and ASP both understands (a SQL database?) so that you can store the session data there along an unique key and finally just pass that unique key around as request parameter so that the one or other can select the data based on the key.