What is the difference between appsetting and connectionstring
tags in web.config file

Answers were Sorted based on User's Feedback



What is the difference between appsetting and connectionstring tags in web.config file ..

Answer / nishanthini.r

ConnectionString:Instead of defining a connection string
on each page, you write it once it the web.config and can
reference it from all other pages.
AppSetting:Not only for defining connection u can give any
key value and name it...but connectionString is meant only
for defining path.
<appSettings>
<add key="MyKey" value="00989-00657-45678-34267"/>
</appSettings>

<ConectionStrings>
<add name="MyConnection" ConnectionString="Connection path
which u have to privide">
</ConnectionStrings>

Is This Answer Correct ?    31 Yes 4 No

What is the difference between appsetting and connectionstring tags in web.config file ..

Answer / vamsipriya

Difference between appSettings and connectionString is:
AppSettings is meant for any data string that can be
stored while connectionString is meant for storing the
database connection strings only.

Is This Answer Correct ?    3 Yes 1 No

Post New Answer

More ASP.NET Interview Questions

How asp.net mvc differs from asp.net web forms? : asp.net mvc

0 Answers  


i have one gridview contains edititemtemplate(which contains update and cancel buttons) and i have one item template (contains edit button) i want the code for update and cancelbuttons in edit item template and i want the code for edit button in itemtemplate. please help me

4 Answers  


How can you send an email message from an asp.net web page?

0 Answers  


What Are The Difference Between AutoEventWireup="true" and AutoEventWireup="False"

12 Answers   Phoenix Technologies,


What is the Global ASA(X) File?

2 Answers  


What is the asp.net control toolkit?

0 Answers  


Explain the flow of processing of the request? : asp.net mvc

0 Answers  


Define managed code and managed data in .net?

0 Answers  


Define asp.net caching?

0 Answers  


Explain in what order a destructors is called.

0 Answers  


How do you change the session time-out value?

0 Answers   TryTechnicals Pvt Ltd,


• What are HttpHandlers? • What are HttpModules?

2 Answers  


Categories