建个conn.aspx文件,然后其它页面include?
还是放在什么web.config文件里?
哪个高手写一个读取数据库里一条记录的文件的页面好吗
參考答案:web.config
<appSettings>
<add key="constr" value="Server=localhost;database=sxqcw;uid=sa;pwd=123;"></add>
</appSettings>
default.aspx.cs
using System.Data.SqlClient;
SqlConnection conn = new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["constr"]);
string countStr = "Select * from pfw_member where username='" + user + "'";
conn.Open();
SqlCommand comm = new SqlCommand(countStr, conn);
SqlDataReader dr = comm.ExecuteReader();
if (dr.Read())
{
Label1.Text = ("对不起,您输入的用户名已经存在!!");
}
else
{
Label1.Text = ("恭喜!!您输入的用户名目前还没有使用.");
}
conn.Close();
dr.Close();