你们主要是不是一个学校的?
哪个学校?
————————————————————————————————
欢迎喜欢编写小游戏的网友交流,请教C#编写联机(网络)游戏,如何传送数据,如联机斗地主?
那楼主是那里混的啊?
话说咱们版主是哪个部分的?
我不知道有多少是 我是反正 大2 正在学c# webserver xml sql
不知道出来用的着不 学的语言有好几们拉 都是那中点到为止的
学不到什么高级的东西
private void Button1_Click(object sender, System.EventArgs e)
{
SqlConnection con =new SqlConnection();
con.ConnectionString="uid=sa;server=(local);database=ffzp;pwd=;";
SqlCommand com=new SqlCommand();
com.CommandText="select *from admin where id=@id and pass=@pass ";
//'"+this.TextBox1.Text+"'";
com.Connection=con;
SqlParameter ap=new SqlParameter("@id",SqlDbType.VarChar,50);
ap.Value=this.TextBox1.Text;
SqlParameter ap1=new SqlParameter("@pass",SqlDbType.VarChar,50);
ap1.Value=this.TextBox2.Text;
com.Parameters.Add(ap);
com.Parameters.Add(ap1);
con.Open();
com.ExecuteNonQuery();
SqlDataReader sqlDr = com.ExecuteReader();
if(sqlDr.Read())
{
if (sqlDr.GetString(0)==ap.Value.ToString() && sqlDr.GetString(1)==ap1.Value.ToString())
{ this.Response.Redirect("admin_Edit.aspx");}
}
con.Close();
this.Response.Redirect("admin_Error.aspx");
}
自己写的一个登陆界面大家帮忙看下呀 有什么问题 告诉我呀
邮箱gzf0306@163.com