asp.net 更新数据 学习资料(大全)

时间:2019-05-13 12:35:50下载本文作者:会员上传
简介:写写帮文库小编为你整理了多篇相关的《asp.net 更新数据 学习资料(大全)》,但愿对你工作学习有帮助,当然你在写写帮文库还可以找到更多《asp.net 更新数据 学习资料(大全)》。

第一篇: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 删除数据 学习资料

删除数据

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 登陆功能模块 学习资料

前台代码

<%@ 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 添加新闻功能模块 学习资料

前台代码

<%@ 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......

    2017大数据数据分析学习资料(含学习路线图)

    2017大数据、数据分析学习资料合集(含学习路线图) 给大家整理一下本年度一些优质的文章,根据大数据相关的知识点一个个整理的,整理的内容包括知识点普及、学习书籍、学习路线图......

    学佛网传统文化专题资料更新

    传统文化专题资料更新 点击查看本专题9月8日归档资料 分享到:4 视频转贴 人类世界向何处去—下集-圣我要提问 明伦园传统文化家塾学校地贤教育在人间系列址居士文章 一名80后......

    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......

    SQL实验四_SQL的数据更新

    实验四、数据更新 1、 实验目的 熟悉数据库的数据更新操作,能够使用SQL语句对数据库进行数据的插入、更新、删除操作。 2、 实验内容  在本实验中,主要内容是如何用SQL语句对......

    20171205更新-十九大学习资料考试题目及答案汇总

    十九大 学习资料考试题目及答案汇总 (以下答案全对) 1、党的十九大报告指出,中国特色社会主义事业总体布局是______、战略布局是____B__。     A.“四位一体”;“四个全面” B.......