ASP网页登陆SQL数据库连接
我的aspx.cs的代码如下:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSyst...
我的aspx.cs的代码如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
public partial class login : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
string xuehao = TextBox1.Text;
string userpass = TextBox2.Text;
SqlConnection admin = new SqlConnection();
string mystr = "Data Source=localhost;Initial Catalog=liuyue;Integrated Security=True";
admin.ConnectionString = mystr;
string Str = "select count(*) form student where xuehao= @ xuehao and pass= @userpass";
admin.Open();
SqlCommand cmd = new SqlCommand(Str,admin);
SqlDataReader sdr = cmd.ExecuteReader();
if (sdr.Read())
{
if (sdr.GetString(0) == userpass)
{
Session["Name"] = xuehao;
Response.Redirect("information.aspx");
}
}
admin.Close();
}
}
但是一直调试的时候就一直显示“在与 SQL Server 建立连接时出现与网络相关的或特定于实例的错误。未找到或无法访问服务器。请验证实例名称是否正确并且 SQL Server 已配置为允许远程连接。 (provider: 命名管道提供程序, error: 40 - 无法打开到 SQL Server 的连接)”
改了很多次,求大神帮忙看一下是什么原因出现的错误怎么改? 展开
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
public partial class login : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
string xuehao = TextBox1.Text;
string userpass = TextBox2.Text;
SqlConnection admin = new SqlConnection();
string mystr = "Data Source=localhost;Initial Catalog=liuyue;Integrated Security=True";
admin.ConnectionString = mystr;
string Str = "select count(*) form student where xuehao= @ xuehao and pass= @userpass";
admin.Open();
SqlCommand cmd = new SqlCommand(Str,admin);
SqlDataReader sdr = cmd.ExecuteReader();
if (sdr.Read())
{
if (sdr.GetString(0) == userpass)
{
Session["Name"] = xuehao;
Response.Redirect("information.aspx");
}
}
admin.Close();
}
}
但是一直调试的时候就一直显示“在与 SQL Server 建立连接时出现与网络相关的或特定于实例的错误。未找到或无法访问服务器。请验证实例名称是否正确并且 SQL Server 已配置为允许远程连接。 (provider: 命名管道提供程序, error: 40 - 无法打开到 SQL Server 的连接)”
改了很多次,求大神帮忙看一下是什么原因出现的错误怎么改? 展开
3个回答
展开全部
请验证实例名称是否正确并且 SQL Server 已配置为允许远程连接
问题就在这里哟
把Data Source=localhost;
改成Data Source=(local);
如果不行就
开始--程序---sql2005--配置工具--服务器和连接的外围应用配置器--远程连接
改为“使用本地连接和远程连接”
OK
就可以了
问题就在这里哟
把Data Source=localhost;
改成Data Source=(local);
如果不行就
开始--程序---sql2005--配置工具--服务器和连接的外围应用配置器--远程连接
改为“使用本地连接和远程连接”
OK
就可以了
追问
第一种不行,第二种方法……我的sql2008配置工具里面没有服务器和连接的外围应用配置器这一项
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你电脑上装了sql server,并且启动了吗
更多追问追答
追答
Data Source=localhost 改成Data Source=localhost\sqlexpress
你的电脑上装了两个sql server的实例, 一个是默认实例,就是localhost\. 还有个是localhost\sqlexpress,
你的默认实例由于某些原因连不上, 你把截图中的名称列加宽一些,看看完整的名称。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询