Persisting sensitve data in asp.net, odd implementation
Posted
by rawsonstreet
on Stack Overflow
See other posts from Stack Overflow
or by rawsonstreet
Published on 2009-08-12T03:38:03Z
Indexed on
2010/03/25
22:03 UTC
Read the original article
Hit count: 212
For reasons not in scope of this question I have implemented a .net project in an iframe which runs from a classic asp page. The classic asp site persisted a few sensitive values by hitting the db on each page.
I have passed there variables as xml to the aspx page, now I need to make these values available on any page of this .net site.
I've looked into the cache object but we are on a web farm so I am not sure it would work. Is there a way I can can instantiate an object in a base page class and have other pages inherit from the base page to access these values?
What is the best way to persist these values?
A few more points to consider the site runs in https mode and I cannot use session variables, and I would like to avoid cookies if possible..
© Stack Overflow or respective owner