views:

17

answers:

2

Hi, I have created a simple members database in ASP.NET with login and create account features. Can anyone give an example of the correct connection string that I would need to use to connect to this database remotely. Any answers would be greatly appreciated.

+1  A: 

Based on the tag I'm guessing you're using SQL Server 2005. See: http://www.connectionstrings.com/sql-server-2005.

Siege898
+1. that's another nice resource for connection strings. I've bookmarked it along with mine. :)
David Stratton
A: 

You didn't specify anything about the database (is it SQL Server, Access, MySql, etc). much less the server name, database name, etc. However, until specifics are posted, here is a nice general resource for figuring out your connection strings:

http://www.carlprothman.net/Default.aspx?tabid=81

David Stratton
Its SQL Server 2005. The server name is .\SQLEXPRESS
pmoth81