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, 5318👍, 0💬
Popular Posts:
How do you override a defined macro? You can use the #undef preprocessor directive to undefine (over...
What is a delegate ? Delegate is a class that can hold a reference to a method or a function. Delega...
How To Enter Microseconds in SQL Statements? - MySQL FAQs - Introduction to SQL Date and Time Handli...
How To Export Data to an XML File? - Oracle DBA FAQ - Introduction to Oracle SQL Developer If you wa...
. How can a servlet refresh automatically if some new data has entered the database? You can use a c...