can i use two web.config files of ConnectionString in One
Default.aspx page
Answers were Sorted based on User's Feedback
Answer / anoop.r
Above Answer is not exactly right.we can have more than one
web.config file in an application. We can have web .config
file for every folder in application.but not 2 web.cofig in
one place
Is This Answer Correct ? | 46 Yes | 1 No |
Answer / sudhir kunnure
You can use multiple web.config in multiple folders in one
application but not in same folder.You can use conection
string in same folder's web.config not others if you want
to use other connection string then you can assign many
keys for connection string in same web.confg.for that not
nessacary to use other web.confg.
Is This Answer Correct ? | 26 Yes | 2 No |
Answer / pradeep
To: Amar Shah
While using Webconfig file in your project, you can
override the Machine configuration details. If you are
having the webconfig in sub folder, this will override your
root folder webconfig file.
Ex:
Root: Webconfig -- ConnString ="Root Connection"
Sub Folder Webconfig -- ConnString ="Sub Connectin"
If your page in Root folder, the "ConnString will take from
Root folder webconfig. If it is in Sub folder, obviously it
will take from subfolder webconfig file.
Is This Answer Correct ? | 10 Yes | 0 No |
Answer / amar shah
hi,
reading above points i have one question , tell me i
have two web.config file in two different folder but the
connection string name is same in both web.config
file..with different server detail ..now tell me what will
happen...????
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / bipin
basically an asp.net application can contain only one
web.config file. so there is no possibility of using 2
web.config files for connection in an application.
Is This Answer Correct ? | 8 Yes | 37 No |
What is client side state management?
If i have 1000 records in dataset, how to do paging?
What is difference between viewstate and session state in javascript?
What are the differences between primary foreign and unique keys?
Explain Life cycle of ASP.NET page when a request is made.
What is asp.net with mvc? : Asp.Net MVC
what is the difference between response.write() and response.output.write()?
About writting a query and SP which is better ?
What is a transaction? a) A banking term. b) A concept used to describe a step in the business process. c) A combination of DML steps that must succeed or the data is retuned to its initial state. d) A combination of DDL steps that must succeed or the data is retuned to its initial state.
Explain the difference between web user control and web custom control?
can we remote debug applications with the remote debugger installed with vs.net 2002, with vs.net 2003?
What is Cookies Less Session?