Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


difference between <connectionstring> <Appsetting>

Answers were Sorted based on User's Feedback



difference between <connectionstring> <Appsetting>..

Answer / prabhat saxena(manu)

there are three way to stablished the connection in
web.config file
1- <appsetting>
code.....
</appsetting>
2-
<ConnectionString>
......code
...
</ConnectionString>
3-
you can create own type of tag and register this tag with
machine.comfig files,

there is no more difference to stablish the connection with
any tag,
mostly developer prefer <AppSettion> beause it provieds
some extra properties,but no diff. of the performance,
u can use anyone,

Is This Answer Correct ?    11 Yes 5 No

difference between <connectionstring> <Appsetting>..

Answer / priya

The <appSettings> element of a web.config file is a place
to store connection strings, server names, file paths, and
other miscellaneous settings needed by an application to
perform work

Is This Answer Correct ?    10 Yes 7 No

difference between <connectionstring> <Appsetting>..

Answer / sivaram

Well inside the appsettings is where you put all properties
that have to do with the entire web application you are
building. Connection strings can be placed inside the
appsettings to make it easy to connect each page from your
site to a database. 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.

Is This Answer Correct ?    3 Yes 6 No

difference between <connectionstring> <Appsetting>..

Answer / ved

The syntax differences between the application settings and
connection strings sections

Is This Answer Correct ?    3 Yes 12 No

difference between <connectionstring> <Appsetting>..

Answer / sandeep

Simply connection string is saved in web con fig file
in between <Appsetting> tags

Is This Answer Correct ?    4 Yes 15 No

difference between <connectionstring> <Appsetting>..

Answer / jerry joseph

<Appsetting> in Web.Config can be used to store Settings
which are applicable for the whole Application

<connectionstring> is a node within <Appsetting> in the
Web.config
it can be used to store the Connection String

Is This Answer Correct ?    4 Yes 19 No

Post New Answer

More ASP.NET Interview Questions

What are the action filters available in asp.net mvc

1 Answers   TCS,


Do session use cookies in asp net?

0 Answers  


what is the exact purpose of http handlers and interfaces?

1 Answers  


Why Global.asax is used?

7 Answers   Perot Systems,


Explain the use of duration attribute of @outputcache page directive.

0 Answers  


What are HTTP handlers in ASP.NET?

0 Answers   MindCracker,


What is operator overloading in dotnet

1 Answers  


What is the use of the tag in the web.config file?

0 Answers   MindCracker,


How many webforms are possible on a single webpage?

6 Answers  


What is session id in web application?

0 Answers  


What is the maximum number of classes that can be contained in one dll file?

0 Answers  


How do I debug an ASP.NET application that wasn't written with Visual Studio.NET and that doesn't use code-behind?

1 Answers  


Categories