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, 5463👍, 0💬
Popular Posts:
Are risk constant through out the project ? * Never say that risk is high through out the project. R...
When should the register modifier be used? Does it really help? The register modifier hints to the c...
What Happens to Your Transactions When ERROR 1213 Occurred? - MySQL FAQs - Transaction Management: C...
Which bit wise operator is suitable for turning off a particular bit in a number? The bitwise AND op...
How can I execute a PHP script using command line? Just run the PHP CLI (Command Line Interface) pro...