give mw code for connect asp to sql server 2000 database?

Here's an example of a connect string in the web.config file.

<connectionStrings>
<add name="hygfull1_1ConnectionString" connectionString="Data Source=JBS;Initial Catalog=hygfull1.1;Integrated Security=True"
providerName="System.Data.SqlClient" />
</connectionStrings>

You can customise it to suit your needs.
 
Back
Top