update session variable between PHP and asp.net

  • Thread starter Thread starter grey
  • Start date Start date
G

grey

i have to do the page intergration with PHP in my asp.net application. if
asp.net update one Session variable, can PHP also use it or vice versa? (of
course, we agreed to use the same session variable before).
 
It happens that grey formulated :
i have to do the page intergration with PHP in my asp.net application. if
asp.net update one Session variable, can PHP also use it or vice versa? (of
course, we agreed to use the same session variable before).

There is no way to directly share sessions between php and asp.net. But
this question is also asked a lot for asp/asp.net integration and I
suspect that you can use the same tricks. See if you can find something
along that line.

Hans Kesting
 
grey was thinking very hard :
then can i use "cookie"?

For a few small values, you could try that. But only if the php pages
and the asp.net pages are on the same domain, else they would be unable
to receive each other's cookies.

Hans Kesting
 
Back
Top