On Oct 16, 10:40*am, "Jacques Oberto" <j...@nospam.com> wrote:
> Hi All,
>
> I have a aspx page which generates an image based on
> URL parameters. Some parameters vary at each request
> and some vary only between separate deployments.
> I would like to avoid to use the seldom used parameters
> in the URL and also avoid "hard coding" them in the aspx
> page.
>
> I was thinking of using a "config file" on disk to store those
> parameters, but will that solution impose disk access at
> each request? Would that config file be cached into memory?
>
You can use a web.config file for this. It's cached in memory.
|