资源简介
C#开发Web留言板功能,VS版本2015,SQL server版本2014
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class background : System.Web.UI.Page
{
string strCon = “Data Source=DESKTOP-I6F115P;Initial Catalog=message_board3;Integrated Security=True“;
protected void Page_Load(object sender EventArgs e)
{
if (!IsPostBack)
{
BindGridView();
}
}
private void BindGridView()
{
SqlConnection con = new SqlConnection(strCon);
con.Open();
SqlCommand cmd = new SqlCommand(“SELECT [username] [message][time] FROM [message]“ con);
SqlDataAdapter adp = new SqlDataAdapter(cmd);
DataSet ds = new DataSet();
adp.Fill(ds);
this.GridView1.DataSource = ds.Tables[0];
this.GridView1.DataBind();
con.Close();
}
protected void GridView1_RowCancelingEdit(object sender GridViewCancelEditEventArgs e)
{
GridView1.EditIndex = -1;
BindGridView();
}
protected void GridView1_RowEditing(object sender GridViewEditEventArgs e)
{
GridView1.EditIndex = e.NewEditIndex;
BindGridView();
}
protected void GridView1_RowUpdating(object sender GridViewUpdateEventArgs e)
{
string id = GridView1.DataKeys[e.RowIndex].Values[0].ToString();
string username = ((TextBox)GridView1.Rows[e.RowIndex].FindControl(“TextBox1“)).Text;
string message = ((TextBox)GridView1.Rows[e.RowIndex].FindControl(“TextBox2“)).Text;
//string time = ((TextBox)GridView1.Rows[e.RowIndex].FindControl(“TextBox3“)).Text;
//DateTime dt = Convert.ToDateTime(time);
String time = ((TextBox)GridView1.Rows[e.RowIndex].FindControl(“TextBox3“)).Text.Trim();
string strUpdate = “UPDATE message set username=‘“ + username + “‘message=‘“ + message + “‘time=‘“ + time + “‘ where username=“ + username;
SqlConnection con = new SqlConnection(strCon);
con.Open();
SqlCommand cmd = new SqlCommand(strUpdate con);
cmd.ExecuteNonQuery();
con.Close();
GridView1.EditIndex = -1;
BindGridView();
}
protected void GridView1_RowDeleting(object sender GridViewDeleteEventArgs e)
{
string id = GridView1.DataKeys[e.RowIndex].Values[0].ToString();
string strDel = “DELETE FROM message where username=“ + id;
SqlConnection con = new SqlConnection(strCon);
con.Open();
SqlCommand cmd = new SqlCommand(strDel con);
cmd.ExecuteNonQuery();
con.Close();
BindGridView();
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3364 2019-05-03 11:06 留言板LJX - 完成实验三\background(1).aspx
文件 3364 2019-05-03 11:06 留言板LJX - 完成实验三\background.aspx
文件 2899 2019-05-03 11:06 留言板LJX - 完成实验三\background.aspx(1).cs
文件 2899 2019-05-03 11:06 留言板LJX - 完成实验三\background.aspx.cs
文件 2694 2019-05-03 11:07 留言板LJX - 完成实验三\CSS\st
文件 132385 2019-05-03 11:07 留言板LJX - 完成实验三\images\back.jpg
文件 30851 2019-05-03 11:07 留言板LJX - 完成实验三\images\back2.jpg
文件 383 2019-05-03 11:07 留言板LJX - 完成实验三\images\icon_pencil-edit.png
文件 534 2019-05-03 11:07 留言板LJX - 完成实验三\images\x_alt.png
文件 1456 2019-05-03 11:06 留言板LJX - 完成实验三\login(1).aspx
文件 1456 2019-05-03 11:06 留言板LJX - 完成实验三\login.aspx
文件 2135 2019-05-03 11:06 留言板LJX - 完成实验三\login.aspx(1).cs
文件 2135 2019-05-03 11:06 留言板LJX - 完成实验三\login.aspx.cs
文件 1672 2019-05-03 11:06 留言板LJX - 完成实验三\messages(1).aspx
文件 1672 2019-05-03 11:06 留言板LJX - 完成实验三\messages.aspx
文件 1808 2019-05-03 11:06 留言板LJX - 完成实验三\messages.aspx(1).cs
文件 1808 2019-05-03 11:06 留言板LJX - 完成实验三\messages.aspx.cs
文件 1551 2019-05-03 11:06 留言板LJX - 完成实验三\register(1).aspx
文件 1551 2019-05-03 11:06 留言板LJX - 完成实验三\register.aspx
文件 1273 2019-05-03 11:06 留言板LJX - 完成实验三\register.aspx(1).cs
文件 1273 2019-05-03 11:06 留言板LJX - 完成实验三\register.aspx.cs
文件 362 2019-05-03 11:06 留言板LJX - 完成实验三\Web(1).config
文件 362 2019-05-03 11:06 留言板LJX - 完成实验三\Web.config
文件 1306 2019-05-03 11:06 留言板LJX - 完成实验三\Web.Debug(1).config
文件 1306 2019-05-03 11:06 留言板LJX - 完成实验三\Web.Debug.config
文件 5242880 2019-05-03 11:08 留言板LJX - 完成实验三\实验三数据库\message_board3.mdf
文件 2097152 2019-05-03 11:07 留言板LJX - 完成实验三\实验三数据库\message_board3_log.ldf
文件 848 2019-05-03 11:06 留言板LJX - 完成实验三\数据库连接验证(1).aspx
文件 848 2019-05-03 11:06 留言板LJX - 完成实验三\数据库连接验证.aspx
文件 1263 2019-05-03 11:06 留言板LJX - 完成实验三\数据库连接验证.aspx(1).cs
............此处省略11个文件信息
- 上一篇:C#读取xm
l配置文件 - 下一篇:c#上位机数据采集源代码
相关资源
- c#上位机数据采集源代码
-
C#读取xm
l配置文件 - C# 学生管理系统 链接Access数据库
- Asp.net(C#) 创建windows服务并定时执行
- 获取TIMQQ信息.zip
- winform创建不规则窗体和控件源码.ra
- C#截图小工具
- 图像特征点的提取以及同名像点匹配
- c#编写送水管理系统
- C#屏幕截图工具及源码
- 三轴运动控制C#
- 工厂用来测试键盘好坏的的一个软件
- C#贪食蛇全能版
- C# 爬虫接口
- C#网络监控软件代码
- 字符串加密与解密C#源码
- C# Socket 分包传送数据
- C#编写的模拟操作系统虚拟内存分页请
- C#实现简单的Socket文件传输
- C#与Halcon联合编程,实现窗口鼠标滚轮
- asp.netC#定时发送邮件
- win7 win8 C# 音量控制 Volume
- TEA加密解密器C#开发
- 三层结构MVCC#框架
- C#笔试题 各大公司迅雷,腾讯,华为
- c#计算器实现 仿windows计算器
- 104协议dll源代码C#
- 101协议dll源码C#
- C#编写登录窗体,连接SQL,有登录、注
- c# TXT操作总结
评论
共有 条评论