永发信息网

asp.net在vs2008里常用快捷键谁给说说 实用的

答案:1  悬赏:0  手机版
解决时间 2021-05-12 06:28
  • 提问者网友:树红树绿
  • 2021-05-11 07:00
asp.net在vs2008里常用快捷键谁给说说 实用的 说10个常用~6个有奖
最佳答案
  • 五星知识达人网友:山河有幸埋战骨
  • 2021-05-11 08:02
看看web.config里面有没有<connectionString>这个节点,有的话修改掉里面的value为你自己的数据库连接字符串!
没有的话。看看类里面有没有名字为DB….cs之类的文件。有的话改掉数据库连接字符串就可以!

这是别人的回答。你研究下!
protected void Login1_Authenticate(object sender, AuthenticateEventArgs e)
{
bool Authenticated = false;
Authenticated = SiteLevelCustomAuthenticationMethod(Login1.UserName, Login1.Password);
e.Authenticated = Authenticated;
if (Authenticated == true)
{
Response.Redirect("Home.aspx");
}
}
private bool SiteLevelCustomAuthenticationMethod(string UserName, string Password)
{
bool boolReturnValue = false;
// Insert code that implements a site-specific custom
// authentication method here.
// This example implementation always returns false.
//这里是你数据库的信息
string strConnection = "server=dtpxp-skumari;database=master;uid=sa;pwd=;";
SqlConnection Connection = new SqlConnection(strConnection);
String strSQL = "Select * From Employee";
SqlCommand command =new SqlCommand(strSQL, Connection);
SqlDataReader Dr;
Connection.Open();
Dr=command.ExecuteReader();
while (Dr.Read())
{
if ((UserName == Dr["name"].ToString()) & (Password == Dr["Password"].ToString()))
{
boolReturnValue = true;
}
Dr.Close();
return boolReturnValue;
}
}
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯