asp.Net 登陆功能模块 学习资料

时间:2019-05-14 09:15:32下载本文作者:会员上传
简介:写写帮文库小编为你整理了多篇相关的《asp.Net 登陆功能模块 学习资料》,但愿对你工作学习有帮助,当然你在写写帮文库还可以找到更多《asp.Net 登陆功能模块 学习资料》。

第一篇:asp.Net 登陆功能模块 学习资料

前台代码

<%@ Page Language=“C#” AutoEventWireup=“true” CodeFile=“login.aspx.cs” Inherits=“login” %>

“http://1/DTD/xhtml1-transitional.dtd”>

无标题页

用户名:

runat=“server”>

ID=“RequiredFieldValidator1” runat=“server”

ControlToValidate=“TextBox1” ErrorMessage=“用户名不能为空

”>

密码:

Width=“150px”>

ID=“RequiredFieldValidator2” runat=“server”

ControlToValidate=“TextBox2” ErrorMessage=“密码不能为空”>

注册

Web.config

登陆按钮后台代码

protected void Button1_Click(object sender, EventArgs e)

{

//创建连接对象

SqlConnection conn = new

SqlConnection(ConfigurationManager.ConnectionStrings[“connection”].ConnectionString);//创建查询,用户名是否存在数据对象

SqlCommand cmd = new SqlCommand(“select * from login where 用户名='” + TextBox1.Text + “'”, conn);

try

{

//如果存在则打开数据库

conn.Open();

SqlDataReader sdr = cmd.ExecuteReader();

//如果用户名输入正确

if(sdr.Read())

{

//判断密码是否正确

if(sdr[“密码”].ToString()==TextBox2.Text)

{

//如果用户名和密码都正确就关闭数据库连接

conn.Close();

//将用户名存放到session中

Session[“用户名”] = TextBox1.Text.Trim();

//并进入后台页面

Response.Redirect(“admin_index.aspx”);

}

else//否则

{

//弹出对话框,提示密码错误

Response.Write(“”);

}

}

else//否则

{

//弹出对话框提示用户名错误

Response.Write(“”);

}

}

catch(System.Exception ee)//异常处理

{

Response.Write(“

language=javascript>alert('”+ee.Message.ToString()+“')”);}

finally

{

conn.Close();//关闭数据库

}

}

第二篇:asp.net 删除数据 学习资料

删除数据

protected void Button2_Click(object sender, EventArgs e)

{

SqlConnection conn = new

SqlConnection(ConfigurationManager.ConnectionStrings[“newsConnectionString”].ConnectionString);SqlCommand cmd = new SqlCommand();

cmd.CommandText=“delete from login where 编号='”+this.TextBox1.Text+“'”;cmd.Connection=conn;

conn.Open();

cmd.ExecuteNonQuery();

conn.Close();

Response.Write(“”);Response.Redirect(“Default.aspx”);

}

第三篇:asp.net 更新数据 学习资料

更新数据

protected void Button1_Click(object sender, EventArgs e)

{

SqlConnection con = new

SqlConnection(ConfigurationManager.ConnectionStrings[“newsConnectionString”].ConnectionString);SqlCommand cmd = new SqlCommand();

cmd.CommandText=“update login set 用户名='”+this.TextBox2.Text+“',密码

='”+this.TextBox3.Text+“',年龄='”+this.TextBox4.Text+“',性别='”+this.TextBox5.Text+“',备注='”+this.TextBox6.Text+“'where 编号=”+this.TextBox1.Text+“";

cmd.Connection = con;

con.Open();

cmd.ExecuteNonQuery();

Response.Redirect(”Default.aspx");

con.Close();

}

第四篇:asp.net 添加新闻功能模块 学习资料

前台代码

<%@ Page Language=“C#” AutoEventWireup=“true”CodeFile=“Default.aspx.cs” Inherits=“_Default” %>

“http://1/DTD/xhtml1-transitional.dtd”>

无标题页

新闻标题:

Width=“523px”>

ErrorMessage=“*”>

新闻内容:

ErrorMessage=“*”>

作者:

ErrorMessage=“*”>

OnClick=“Button1_Click” />

Web.config

提交新闻后台代码

protected void Button1_Click(object sender, EventArgs e)

{

SqlConnection conn = new

SqlConnection(ConfigurationManager.ConnectionStrings[“connection”].ConnectionString);

SqlCommand insertcmd = new SqlCommand(“insert into news(新闻标题,新闻内容,作者)values(@新闻标题,@新闻内容,@作者)”, conn);

//为每个数据库字段设置参数

insertcmd.Parameters.Add(“@新闻标题”, SqlDbType.VarChar, 200);

insertcmd.Parameters.Add(“@新闻内容”, SqlDbType.VarChar);

insertcmd.Parameters.Add(“@作者”, SqlDbType.VarChar, 20);

//为每个参数赋值

insertcmd.Parameters[“@新闻标题”].Value = TextBox1.Text;

insertcmd.Parameters[“@新闻内容”].Value = TextBox2.Text;

insertcmd.Parameters[“@作者”].Value = TextBox3.Text;

try

{

conn.Open();//打开数据库

int flag = insertcmd.ExecuteNonQuery();//执行添加

if(flag > 0)//如果添加成功

{

Response.Write(“”);

this.TextBox1.Text = “";

this.TextBox2.Text = ”“;

this.TextBox3.Text = ”“;

}

else// 如果添加失败

{

Response.Write(”“);

this.TextBox1.Text = ”“;

this.TextBox2.Text = ”“;

this.TextBox3.Text = ”“;

}

}

catch(System.Exception ee)//错误处理

{

Response.Write(”");

}

finally

{

conn.Close();//关闭数据库连接

}

}

第五篇:asp.net 检查用户名是否存在 学习资料

检查用户名是否存在功能模块

protected void Button1_Click(object sender, EventArgs e)

{

usernamevalidate();

}

private int usernamevalidate()

{

SqlConnection conn = new

SqlConnection(ConfigurationManager.ConnectionStrings[“connection”].ConnectionString);SqlCommand selectcmd = new SqlCommand(“select * from login where 用户名='” + TextBox1.Text.Trim()+ “'”, conn);

int i = 0;

try

{

conn.Open();

SqlDataReader sdr = selectcmd.ExecuteReader();

if(sdr.Read())

{

i = 1;

Label1.Text = “此用户已存在,请输入其他用户名!”;

}

else

{

Label1.Text = “此用户可使用!”;

}

}

catch(System.Exception ee)

{

Response.Write(“”);

}

finally

{

conn.Close();

}

return i;

}

下载asp.Net 登陆功能模块 学习资料word格式文档
下载asp.Net 登陆功能模块 学习资料.doc
将本文档下载到自己电脑,方便修改和收藏,请勿使用迅雷等下载。
点此处下载文档

文档为doc格式


声明:本文内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:645879355@qq.com 进行举报,并提供相关证据,工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。

相关范文推荐

    asp.Net 图片上传 学习课件

    后台代码 protected void Page_Load(object sender, EventArgs e){ this.Image1.Visible = false; } protected void Button1_Click(object sender, EventArgs e){ string f......

    asp.Net 站内搜索 学习课件

    后台代码 protected void Button1_Click(object sender, EventArgs e){ SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["connection"].C......

    asp.net 修改密码功能模块 学习课件

    修改用户后台密码 protected void Button1_Click(object sender, EventArgs e) { //创建数据库连接对象,并调用web.config文件的连接驱动SqlConnection conn = new SqlCon......

    asp.net 页面跳转 学习课件(五篇模版)

    页面跳转public partial class Default2 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { bind; } } protected voi......

    微信企业号功能、申请、登陆说明介绍(精选5篇)

    微信企业号功能、申请、登陆说明介绍 微信企业号是什么?它有什么功能,都能用来做什么,怎么申请?在哪里登陆,本文介绍微信企业号的操作说明,帮忙大家了一个全新的微信企业平台。......

    学习省纪委十一届四次会议心得体会(代登陆)

    学习省纪委十一届四次会议精神心得体会 ——卫城镇星光小学 代登陆 贵州省第十一届纪律检查委员会第四次全体会议,于2015年1月22日至23日在贵阳召开。中共贵州省委书记、省......

    建筑工程安全与功能检验资料

    安全与功能检验资料 一、地基与基础工程 1、土工击试验报告 2、回填土实验报告(应附图) 3、地基土承载力检测报告 4、地基土密实度检测报告 5、复合地基承载力检测报告 6、工......

    学习资料

    全面推进依法治国四中全会精神解读 法治的根本精神就是个人权利是一切国家权力的来源,宪法和国家不是公民权利的造物,而是公民权利的结果。 一、反腐是法治建设的重点指向 二......