Database Permission Settings or Path Are Not Configured Properly

This typically happens when you move from one system to another system and the permissions need to be changed to work from the system.

If you are using Microsoft SQL Server, open you Web.config file and make changes to the database connection strings appropriately:

<add key="DatabaseNorthwind1"

     value=" Provider=SQLOLEDB;

          Data Source=localhost;

          Database=Northwind;

          Trusted_Connection=no;

          User Id=sa;

          Password=sasa"

/>

Specifically pay attention to the Data Source, Trusted Connection and User Id and password.

If you are using Trusted Connection and do not see any data, please review these “How to’s” from Microsoft:

http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q176377

http://support.microsoft.com/kb/176379/EN-US/

http://support.microsoft.com/default.aspx?scid=kb;en-us;176378

See Also

Application Runs But No Data is Displayed