Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is AppSetting Section in “Web.Config” file
What is AppSetting Section in “Web.Config” file ?
✍: Guest
Using “AppSetting” section we can define user defined values. Example below defined is “ConnectionString” section which will be used through out the project for database connection.
<configuration> <appSettings> <add key="ConnectionString" value="server=xyz;pwd=www;database=testing" /> <appSettings>
2007-10-24, 5373👍, 0💬
Popular Posts:
What are the core functionalities in XML .NET framework? Can you explain in detail those functionali...
What are the types of variables x, y, y and u defined in the following code? #define Atype int* type...
What is the main difference between a Vector and an ArrayList? Java Vector class is internally synch...
How To Delete a User Account? - Oracle DBA FAQ - Managing Oracle User Accounts, Schema and Privilege...
How do I force the Dispose method to be called automatically, as clients can forget to call Dispose ...