difference between <connectionstring> <Appsetting>
Answer Posted / 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 |
Post New Answer View All Answers
Can we have 2 web config files?
Explain the basic functionality of garbage collector?
Apart from IDE what are the enhancements in asp.net 2.0?
What is the most appropriate lifetime for a database connection/orm context in an asp.net mvc application? : Asp.Net MVC
What is jade template engine?
What is the difference between user control and custom control?
How can you apply a theme to your asp.net application?
How can we access static variable?
How can we implement a identity (sql server) call in an asp.net page?
What is s2s tracking?
What is state management techniques in asp.net?
How to implement role based security in asp.net mvc? : Asp.Net MVC
How do cookies work?
What is the difference between client-side and server-side validations in webpages?
Explain the flow of processing of the request? : asp.net mvc