Remember, in ASP.NET 2.0 this changes to :
VB.NET :
ConfigurationManager.AppSettings("mySetting")
C# :
ConfigurationManager.AppSettings["mySetting"];
Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
======================
"Kostadin Kostov" <> wrote in
message news:156AC491-B015-47D0-B4FA-...
> using System.Configuration;
>
> ConfigurationSettings.AppSettings["mySetting"];
>
> In Web.config you should have:
> <add key="mySetting" value="myValue">
>
> "Matthias Knöchlein" wrote:
>
>> Hi !!
>>
>> How can I access ConfigurationSettings in a server control ?
>>
>> thanxs
>>
>>
>>