Ask a Question related to ASP.NET General, Design and Development.
-
George Ter-Saakov #1
Config settings.
Hi.
I have couple config setting for my Application.
I created class with static members.
Application_Start method reads settingg from ConfigurationSettings.AppSettings and populates static class. I just found it more convenient (since now I can have default settings).
Does this approach have any flaws?
Thanks.
George.
George Ter-Saakov Guest
-
app.config and Settings.Designer.cs
Currently, in my project, there is a folder named "Properties" which contains one item, Settings.settings, which contains one subitem,... -
WebService not obeying web.config error reporting settings
Hi I'm trying to setup a web service to run under a web-site on Windows 2003 Server . If I type the URL to the web-service in the address bar of... -
Web.Config / Security Settings for sites NOT on sys partition
I have a Win2K server set up with .NET 1.1, IIS5, and I run a few development test sites on this server for deployment elsewhere. Up until now,... -
Web config security settings
Hi all; I want to use user name and password in my asp.net project for all aspx files but not for asmx files. Or i want to use some files with... -
Transfer settings, config to new computer?
I need to replace the XP Home that came on a computer with XP Pro. Will the Win XP Transfer Settings wizard include Dreamweaver configuration and... -
Cowboy \(Gregory A. Beamer\) #2
Re: Config settings.
Downside? Just the memory taken up if you are not using the settings.
--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
Author: ADO.NET and XML: ASP.NET on the Edge
************************************************** **************************
****
Think Outside the Box!
************************************************** **************************
****
"George Ter-Saakov" <we@hotmail.com> wrote in message
news:%23bf1DMgSDHA.2092@TK2MSFTNGP10.phx.gbl...
Hi.
I have couple config setting for my Application.
I created class with static members.
Application_Start method reads settingg from
ConfigurationSettings.AppSettings and populates static class. I just found
it more convenient (since now I can have default settings).
Does this approach have any flaws?
Thanks.
George.
Cowboy \(Gregory A. Beamer\) Guest
-
Ravikanth[MVP] #3
Config settings.
Hi george
Can you tell me in detail why u r populating all settings
in to static class.
U can store all settings in application variables and use
these variables in all the pages.
HTH
Ravikanth
ConfigurationSettings.AppSettings and populates static>-----Original Message-----
>Hi.
>
>I have couple config setting for my Application.
>I created class with static members.
>
>Application_Start method reads settingg from
class. I just found it more convenient (since now I can
have default settings).>
>Does this approach have any flaws?
>
>
>
>Thanks.
>
>George.
>Ravikanth[MVP] Guest
-
George Ter-Saakov #4
Re: Config settings.
1. Performance is better when referencing variable rather than lookup in
Collection.
2. It makes my business classes more independent from ASPX context (which is
more important than 1).
They can access connection string as long as there is clsGlobal loaded.
If I were using Application then they explicitly rely on the ASPX
environment which makes them not pure business classes (since they have
knowledge about GUI).
George.
"Ravikanth[MVP]" <dvravikanth@hotmail.com> wrote in message
news:0a4b01c34a23$25f35280$a501280a@phx.gbl...> Hi george
>
> Can you tell me in detail why u r populating all settings
> in to static class.
>
> U can store all settings in application variables and use
> these variables in all the pages.
>
>
> HTH
> Ravikanth
>
>> ConfigurationSettings.AppSettings and populates static> >-----Original Message-----
> >Hi.
> >
> >I have couple config setting for my Application.
> >I created class with static members.
> >
> >Application_Start method reads settingg from
> class. I just found it more convenient (since now I can
> have default settings).> >
> >Does this approach have any flaws?
> >
> >
> >
> >Thanks.
> >
> >George.
> >
George Ter-Saakov Guest



Reply With Quote

