Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

web config issues

Status
Not open for further replies.

335511

Programmer
May 19, 2010
1
0
0
IN
Hello my dear Friends

i want to know two basic things in asp.net

(1)How all pages are associated with the webconfig files?

(2)By just providing the database name,Userid and Password, how we can access the qsl server ?(without open it)

Thanks for your openin in advanced.

Thanks again

Pankaj Gupta.
 
1. the web.config can application wide settings. the core features is extensive, and you can extend configuration by defining you own section handlers.

2. using a connection string and provider you can create a database connection object (IDbConnection). however a connection is useless if you don't open it.

also database operations are part of the ADO.Net framework, which has nothing to do with the asp.net framework. You can use them in conjunction with one another, but one does not influence the other.

where the 2 frameworks intersect is how you manage the database connections within the asp.net framework.

Jason Meckley
Programmer
Specialty Bakers, Inc.

faq855-7190
faq732-7259
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top