Best way to pass XML between web pages.

  • Thread starter Thread starter csgraham74
  • Start date Start date
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
 
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
 
What do you mean by have XML available btw pages..
Pls elaborate
Patrick
 
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

Back
Top