Is the connection string in your web.config correct?
Try something like this on Northwind. Add the user "test", given the password "xyz123", to access the Northwind database.
<appSettings>
<add key="DBConn" value="Server=yourServer;Database=Northwind;Uid=te st;pwd=xyz123"/>
</appSettings>
|