where should write the connection string Show that it will
apply whole pages in the website

Answers were Sorted based on User's Feedback



where should write the connection string Show that it will apply whole pages in the website..

Answer / krushitha

you need to write the connection string in web.config.

Is This Answer Correct ?    4 Yes 0 No

where should write the connection string Show that it will apply whole pages in the website..

Answer / lakshmi

connection string saved in the web.config file:

<connectionstrings>
<add name="Appconnectionstring1"
connectionstring="server=localhost;User Id=sa;Password=
password;Database=Northwind; persist security info ="True"
providerName="system.data.sqlclient"/>
</connectionstrings>

Is This Answer Correct ?    3 Yes 0 No

where should write the connection string Show that it will apply whole pages in the website..

Answer / krushitha

It is a central repository from where you can retrieve it
and use it in all the pages. For example if you store the
connection string in a central place like a web.config file
you can retrieve those connection strings from the
web.config file and use it

Is This Answer Correct ?    2 Yes 0 No

where should write the connection string Show that it will apply whole pages in the website..

Answer / navin.cp

You can also pass a connection string in web.config file as:-

<appSettings>
<add key="ConStrName" value="your_ConStrValue"/>
</appSettings>

Is This Answer Correct ?    1 Yes 0 No

where should write the connection string Show that it will apply whole pages in the website..

Answer / payal

Config file we can write that is web.config and
machine.config

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More ASP.NET Interview Questions

Define dll hell?

0 Answers  


Is a dll file an executable?

0 Answers  


What is the difference between exe and dll?

0 Answers  


Difference between .NET and previous version?

0 Answers   Microsoft, TIPL,


What are the new navigation controls in asp.net 2.0?

0 Answers  






What does a switch do?

0 Answers  


How do you remove duplicates without using remove duplicate stage?

0 Answers  


What's the difference between Page.RegisterClientScriptBlock and Page.RegisterStartupScript ?

1 Answers  


How many web.config files in each solution

10 Answers   General Mills,


what is Theme in Asp.net 2.0

1 Answers   Syntel,


What is mta?

0 Answers  


What is difference between Lambda Expression and LINQ in ASP.NET?

0 Answers   Viscus Infotech,


Categories