Pass session from jsp to asp.net
My website login page is in jsp & some of modules in .net , So i开发者_JS百科 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.
精彩评论