Re: apllication wide settings storage
From: Bobby Ryzhy (bryzhy_at_hotmail.com)
Date: 07/08/04
- Next message: John Saunders: "Re: asp.net user control : how to manage click on internal object"
- Previous message: Raterus: "Re: Open page in new window instead of using redirect"
- In reply to: Glenn Thimmes: "apllication wide settings storage"
- Next in thread: Glenn Thimmes: "Re: apllication wide settings storage"
- Reply: Glenn Thimmes: "Re: apllication wide settings storage"
- Messages sorted by: [ date ] [ thread ]
Date: Thu, 08 Jul 2004 15:26:37 -0600
Use application variables.
example:
Global.asax.cs
protected void Application_Start(Object sender, EventArgs e)
{
Application["variable1"] = "abc";
}
WebForm1.aspx.cs
private void Page_Load(object sender, System.EventArgs e)
{
string var = Application["variable1"].ToString();
Application["variable1"] = "123";
}
Bobby Ryzhy
bobby@weekendtech.net
http://www.weekendtech.net
On Thu, 8 Jul 2004 13:56:17 -0600, "Glenn Thimmes"
<glennthi@nospam_msn.com> wrote:
>I am needing to read and write application settings from within my ASP.NET
>application. My web.config is not an option since I need to be able to write
>settings as well. My database is not an option either as the database
>location itself is one of the settings.
>
>I've been trying to work with Isolated Storage, but it is obviously designed
>to be use specific. I've attempted using Impersonation to load the same
>settings for every session, but this doesn't really work. If I impersonate
>my user account it works. If I impersonate the Administrator account it
>works. But if I create a new user account on the machine and try to
>impersonate that account, I just get the following error when trying to get
>the isolated storage:
>
>Unable to create the store directory.[The system cannot find the file
>specified. ]
>
>I've even made this new account an administrator, but I still get the same
>results. Is there a better way to do what I am trying to do? Isn't there
>some simple method of saving and retrieving application wide settings in an
>ASP.NET environment? I also should mention that it is required that I use
>windows authentication for this site. When I turn that off, the IUSR account
>works just great for saving and loading settings. But unfortunately I must
>authenticate each use in order to use domain security for using Reporting
>Services.
>
>Thank you for any suggestions,
>
>-Glenn Thimmes
>
- Next message: John Saunders: "Re: asp.net user control : how to manage click on internal object"
- Previous message: Raterus: "Re: Open page in new window instead of using redirect"
- In reply to: Glenn Thimmes: "apllication wide settings storage"
- Next in thread: Glenn Thimmes: "Re: apllication wide settings storage"
- Reply: Glenn Thimmes: "Re: apllication wide settings storage"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|