Session from asp to aspx

M

Meir Rudovsky

I have asp page which has iframe to host aspx page. Since , the main
application (asp page) has session values , i need these values be passed
to aspx page in iframe. But, i found out that session cookies are not the
same.
Is there any way to pass session values from asp to aspx ?
 
G

Guest

isn't using a shared database a little overkill ?

anyway, knowing that in cookies you can only store strings, the querystring
seems to be the best solution, eventough its length is limited
 
S

Steve C. Orr [MVP, MCSD]

It's up to you to decide which technique fits best for your application, but
in general I'd say it is NOT overkill to use a database to share data
between separate (but related) software systems. In fact, that's one of the
main reasons databases were invented.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top