0
What is sql connector code for asp.net in the web config section?
please answered me
1 Réponse
+ 2
You need to add connection string to your config file:
<connectionStrings>
<add name="CustomerDataConnectionString"
connectionString="Data Source=localhost;Integrated Security=SSPI;Initial Catalog=Northwind"
providerName="System.Data.SqlClient" />
</connectionStrings>
Please refer: https://msdn.microsoft.com/en-us/library/ms228094(v=vs.85).aspx