visual studio2010连接自带的sql server 2008express版本的数据库有关问题

visual studio2010连接自带的sql server 2008express版本的数据库问题
那个连接字符串connectionString应该怎么写

我App_Data有个DataBase.mdf
server name是F8BA382705AB476\SQLEXPRESS




哪里有这样的例子资料?求教上述问题
------最佳解决方案--------------------
如果使用的数据库是自带的sql server express版本的,并且在App_Data中,那要使用这个数据库在web.config中可以这样写
<connectionStrings>
<add name="PanetWroxConnectionString1" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=
------其他解决方案--------------------
这个要根据实例来解释比较好理解
------其他解决方案--------------------
<add key="ConnectionString" value="server=localhost;database=数据库名;uid=sa;pwd=123" />
------其他解决方案--------------------
sqlconnect名字=new sqlconnect("server=.;database='数据库名'; security intergate=sspi;");

至于数据库,你直接附加到SQL里面就行了
------其他解决方案--------------------
DataDirectory