开发者

Pass session from jsp to asp.net

开发者 https://www.devze.com 2023-01-10 06:10 出处:网络
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

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消