2015-112 ado.net2
CRUD:create read update delete
七. 数据绑定数据列的转换
在gridview中添加<OnRowDataBound="GridView1_RowDataBound">
在cs中
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)//判断是数据行
{
string cate = e.Row.Cells[2].Text;
switch (cate)
{
case "1":
e.Row.Cells[2].Text = "网页前端";
break;
case "2":
e.Row.Cells[2].Text = "数据库";
break;
case "3":
e.Row.Cells[2].Text = ".NET";
break;
case "4":
e.Row.Cells[2].Text = "PS";
break;
default:
break;
}
DateTime cdate = Convert.ToDateTime(e.Row.Cells[3].Text); //将字符串转为日期类型
e.Row.Cells[3].Text = cdate.ToLongDateString().ToString(); //转换成其他格式的日期
}
}
八.数据增删
1.添加数据
string txet = Txtcmain.Text.Trim();
string strsql = string.Format("insert into Rnews(Title,Text,CreatTime) values('{0}','{1}','{2}')", title, txet, DateTime.Now.ToString());
using(con=new SqlConnection(strCon))
{
con.Open();
using (cmd = new SqlCommand(strsql, con))
{
cmd.ExecuteNonQuery();
}
BindRnews();
Response.Write("<script>alert('添加成功')</script>");
}
2.删除数据
int id = Convert.ToInt32(Txtdeleid.Text.Trim());
string str = string.Format("select count(*) from Rnews where newsId={0}", id);
using(con=new SqlConnection(strCon)) {
con.Open();
using(cmd=new SqlCommand(str,con)) {
if(Convert.ToInt32(cmd.ExecuteScalar().ToString())==0) {
Response.Write("<script>alert('id不存在')</script>");
}
else {
string strsql = string.Format("delete Rnews where newsId={0}", id);
using (cmd = new SqlCommand(strsql, con)) {
cmd.ExecuteNonQuery();//对数据库进行增加,删除,修改
}
BindRnews();
Response.Write("<script>alert('删除成功')</script>");
}
}
}
3.修改语句:update biaoming set title="" where id=1
九.绑定详细数据
9.1 在gridview中,编辑列,添加TemplateField,headertext中写上标题,返回选择编辑模板,在templatefield上添加<ItemTemplate>
<asp:TemplateField HeaderText="详情">
<ItemTemplate>
<a href='newsmain.aspx?newsId=<%#Eval("newsId") %>'>详细</a></ItemTemplate>
<%-- GET传值 <%#Eval("newsId") %>固定写法,绑定这一行的id--%>
</asp:TemplateField>
9.2 在新页面中,将光标放到字段上,重构,选择封装字段,得到属性,获取内容
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace yishen1
{
public partial class newsmain : System.Web.UI.Page
{
/// <summary>
/// 连接数据库
/// </summary>
string strCon = ConfigurationManager.ConnectionStrings["qie_yishen"].ToString();
SqlConnection con;
SqlCommand cmd;
SqlDataReader read;
/// <summary>
/// 获取newsid值
/// </summary>
private int _newsid;
public int Newsid
{
get {
try
{
_newsid = Request.QueryString["newsId"] == null ? 0 : Convert.ToInt32(Request.QueryString["newsId"].ToString());
}
catch
{
_newsid = 0;
}
return _newsid; }
set { _newsid = value; }
}
public string Getnews()
{
StringBuilder sb = new StringBuilder();
using (con = new SqlConnection(strCon))
{
con.Open();
if (Newsid > 0)
{
string strsql = string.Format("select newsId,Title,Text,CreatTime from Rnews where newsId={0}", Newsid);
cmd=new SqlCommand(strsql,con);
using (read = cmd.ExecuteReader())
{
if (read.Read())
{
sb.Append("<table>");
sb.Append(string.Format("<tr><td>新闻id:</td><td>{0}</td></tr>", Newsid));
sb.Append(string.Format("<tr><td>标题:</td><td>{0}</td></tr>", read["Title"].ToString()));
sb.Append(string.Format("<tr><td>内容:</td><td>{0}</td></tr>", read["Text"].ToString()));
sb.Append(string.Format("<tr><td>创建时间:</td><td>{0}</td></tr>", read["CreatTime"].ToString()));
sb.Append("</table>");
}
else
{
sb.Append("暂无数据");
}
}
}
else
{
sb.Append("暂无数据");
}
}
return sb.ToString();
}
protected void Page_Load(object sender, EventArgs e)
{
}
}
}
9.3前台调用后台
在div中写上 <%=Getnews() %> //在此不代表注释
9.4 post传值
默认的是get传值,所以要设置传值方式 method=post,action=“.....”设置传到的页面
<form id="form1" action="PostBehindPage.aspx" method="post">
<input type="text" name="username" />
<input type="password" name="pwd" />
<input type="submit" /> //代表提交按钮
</form>
注:在post传值中,必须要设置name。
9.5 在新页面的cs中,添加代码
protected void Page_Load(object sender, EventArgs e)
{
string username = Request.Form["username"].ToString(); //获取用户名
string pwd = Request.Form["pwd"].ToString(); //获取密码
Response.Write(username + " " + pwd); //显示
}
2015-112 ado.net2的更多相关文章
- 抽象工厂在ADO.Net中的应用
https://msdn.microsoft.com/zh-cn/library/ms971499.aspx http://www.c-sharpcorner.com/UploadFile/moses ...
- 【转】Entity Framework教程(第二版)
源起 很多年前刚毕业那阵写过一篇关于Entity Framework的文章,没发首页却得到100+的推荐.可能是当时Entity Framework刚刚发布介绍EF的文章比较少.一晃这么多年过去了,E ...
- 杂项:SQLite
ylbtech-杂项:SQLite SQLite,是一款轻型的数据库,是遵守ACID的关系型数据库管理系统,它包含在一个相对小的C库中.它是D.RichardHipp建立的公有领域项目.它的设计目标是 ...
- Entity Framework教程(第二版)
源起 很多年前刚毕业那阵写过一篇关于Entity Framework的文章,没发首页却得到100+的推荐.可能是当时Entity Framework刚刚发布介绍EF的文章比较少.一晃这么多年过去了,E ...
- c#事务用法
ado.net2.0的SqlTransaction使用方法 /////ado.net1.0中使用Transacation(事务) string connectionString = "dat ...
- 使用C#对SQLLite进行操作
1.数据库连接(常用连接方法,示例) 1). 添加引用: System.Data.SQLite.DLL .2). 打开或创建数据库文件: SQLiteConnection.CreateFile(fil ...
- [知识库分享系列] 四、ASP.NET MVC and Winform
知识库分享系列: [知识库分享系列] 三.Web(高性能Web站点建设) [知识库分享系列] 二..NET(ASP.NET) [知识库分享系列] 一.开篇 分享介绍本篇分享两个知识库节点,分别为“AS ...
- [知识库分享系列] 二、.NET(ASP.NET)
最近时间又有了新的想法,当我用新的眼光在整理一些很老的知识库时,发现很多东西都已经过时,或者是很基础很零碎的知识点.如果分享出去大家不看倒好,更担心的是会误人子弟,但为了保证此系列的完整,还是选择分享 ...
- EntityFramework学习
本文档主要介绍.NET开发中两项新技术,.NET平台语言中的语言集成查询技术 - LINQ,与ADO.NET中新增的数据访问层设计技术ADO.NET Entity Framework.ADO.NET的 ...
随机推荐
- 转载 usb_alloc_coherent 和 usb_free_coherent
今天做移植的时候,随手记录一下,今天所遇到的问题解决方法. 在linux2.6.34和之前的代码中还可以使用usb_buffer_alloc 和 usb_buffer_free 这两个函数,在2.6. ...
- python学习之爬虫初体验
作业来源: "https://edu.cnblogs.com/campus/gzcc/GZCC-16SE2/homework/2851" ** 1.简述爬虫原理 通用爬虫 即(搜索 ...
- 安装percona-toolkit工具时遇到的问题
1. 从这个链接https://www.percona.com/doc/percona-toolkit/3.0/index.html下载percona-toolkit安装包 2. 下载完成通过ftp工 ...
- axios请求
axios.get('/user?ID=12345') .then(function (response) { console.log(response); console.log(response. ...
- .NET平台常用的开发组件(csdn)
.NET平台常用的开发组件 原创 2017年02月24日 09:20:04 工欲善其事,必先利其器.学习.NET也10年有余,其优雅的编程风格,高效率的开发速度,极度简单的可扩展性,足够强大开发类库, ...
- ametuer technology
1. eclipse build output/ .s37 not big enough (about 1.23M) Brose Setting: Build command must be BUIL ...
- Java反射操作成员变量 Class can not access a member with modifiers "*"
fields[j].set(obj, val); 报: Exception in thread "main" java.lang.IllegalAccessException: C ...
- 在mmdetection中跑通MaskRCNN
1.将数据集转化成COCO格式数据集 Kaggle->COCO: https://github.com/pascal1129/airbus_rle_to_coco/blob/master/1_s ...
- 让selenium中的Cromerderive不加载图片设置
把配置参数(chrom_opt)设置好后将其添加到 browser = webdriver.Chrome(executable_path="chromedriver.exe的路径" ...
- 华为Java机试题
1.程序实现目标: 输入一个字符串,将其各个字符对应的ASCII值加5后,输出结果. 程序要求:该字符串只包含小写字母,若其值加5后的字符值大于'z',将其转换成从a开始的字符. package co ...