can i use two web.config files of ConnectionString in One
Default.aspx page
Answer Posted / 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 |
Post New Answer View All Answers
What is Forms Authentication in ASP.NET?
What does the orientation property do in a menu control?
Describe in brief .net framework and its components.
What are the new data controls in asp.net 2.0?
a web application needs to be created to accept the product name and quantity of a toy from a customer. After the customer has entered the product name the application needs to display the discounted price of the product to the customer (company is offering 35% discount on all products). The application should allow the customer to select the product name from a list box. and also while i'm data binding to a label with custom data binding with some declarations : "The Discounted Price is "+((System.Convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)) - ((System.convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)*0.35)). Where i need to give this declaration in asp.net 2.0.
How u refer webservices?
Is there any property names “isnavigating”?
What is a uri query?
What is difference between ispostback and autopostback in asp net?
What is asp.net globalization?
Is there any limit for query string? Means what is the maximum size?
What is the asp.net control toolkit?
What is the purpose of asp.net?
How do u optimize a query in asp.net?
Will the asp.net validators run in server side or client side? How do you do client-side validation in .net? How to disable validator control by client side javascript?