Best way to pass XML between web pages.

C

csgraham74

just one more question ....

I have written as asp.net application which reads from XML. I need to
have XML available between pages.

What is the best and most secure way of doing this ??

my systems manager has told me that i cannot use session state due to
security issues.


Any help appreciated

CG
 
G

Grant Merwitz

Well, if you can't session it, you left with Caching it or Reading from the
source again.

Caching it can be used if its not user specific.
Reading it from the source again is less efficient.

again, HTH
 
H

Hans Kesting

csgraham74 said:
my systems manager has told me that i cannot use session state due to
security issues.

And what would be his suggestion to store client-specific temporary data
(the things you would usually put in Session)? Cookies? Transfer over
querystring or hidden fields? Or do your own session management
in some database?

Hans Kesting
 

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