How to connect database by using web.config file
What is Web.Config File?
Configuration file is used to manage various settings that define a website. The settings are stored in XML files that are separate from your application code. In this way you can configure settings independently from your code. Generally a website contains a single Web.config file stored inside the application root directory. However there can be many configuration files that manage settings at various levels within an application.
WEB .CONFIG FILE
What is Web.Config File?
Configuration file is used to manage various settings that define a website. The settings are stored in XML files that are separate from your application code. In this way you can configure settings independently from your code. Generally a website contains a single Web.config file stored inside the application root directory. However there can be many configuration files that manage settings at various levels within an application.
<?xml version="1.0"?>
<!--
Note: As an alternative
to hand editing this file you can use the
web admin tool to
configure settings for your application. Use
the Website->Asp.Net
Configuration option in Visual Studio.
A full list of settings
and comments can be found in
machine.config.comments
usually located in
\Windows\Microsoft.Net\Framework\v2.x\Config
-->
<configuration>
<appSettings/>
<connectionStrings>
<add name="dbconnection" connectionString="Data
Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\database.mdf;Integrated
Security=True;User Instance=True" providerName="System.Data.SqlClient"/>
</connectionStrings>
<system.web>
<!--
Set compilation
debug="true" to insert debugging
symbols into the
compiled page. Because this
affects
performance, set this value to true only
during
development.
-->
<compilation debug="true" targetFramework="4.0">
</compilation>
<!--
The
<authentication> section enables configuration
of the security
authentication mode used by
ASP.NET to
identify an incoming user.
-->
<authentication mode="Windows"/>
<!--
The
<customErrors> section enables configuration
of what to do
if/when an unhandled error occurs
during the
execution of a request. Specifically,
it enables
developers to configure html error pages
to be displayed
in place of a error stack trace.
<customErrors
mode="RemoteOnly"
defaultRedirect="GenericErrorPage.htm">
<error
statusCode="403" redirect="NoAccess.htm" />
<error
statusCode="404" redirect="FileNotFound.htm" />
</customErrors>
-->
<pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/></system.web>
<!--
The system.webServer
section is required for running ASP.NET AJAX under Internet
Information Services 7.0. It is not necessary for previous version of
IIS.
-->
</configuration>
1. in this file we can change the exesting connection NAME to <add name=”dbconnection”
2.and CHANGE THE DATA BASENAME . HEAR DATA BASE NAME IS database.mdF. in this place we must enter the newly created data base name.
<connectionStrings>
<add name="dbconnection" connectionString="Data
Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\database.mdf;Integrated
Security=True;User Instance=True" providerName="System.Data.SqlClient"/>
</connectionStrings>
<system.web>
Usage of configuration file
ASP.NET Configuration system is used to describe the properties and behaviors of various aspects of ASP.NET applications. Configuration files help you to manage the many settings related to your website. Each file is an XML file (with the extension .config) that contains a set of configuration elements. Configuration information is stored in XML-based text files.
ASP.NET Configuration system is used to describe the properties and behaviors of various aspects of ASP.NET applications. Configuration files help you to manage the many settings related to your website. Each file is an XML file (with the extension .config) that contains a set of configuration elements. Configuration information is stored in XML-based text files.
#SradhaWebCreations
Contact : +91-9040573923, +91-7008182025
http://sradhawebcreations.com/
http://sradhawebcreations.blogspot.in/
https://facebook.com/sradhawebcreations
Contact : +91-9040573923, +91-7008182025
http://sradhawebcreations.com/
http://sradhawebcreations.blogspot.in/
https://facebook.com/sradhawebcreations
No comments:
Post a Comment