上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 42 下一页

2018年10月7日

在GridView的RowDataBound事件中获取某行某列的值!

摘要: protected void gdvOrders_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { DataRowView drv = (D 阅读全文

posted @ 2018-10-07 00:01 asdyzh 阅读(176) 评论(0) 推荐(0) 编辑

2018年10月6日

<base target="_self"/>标签的用法

摘要: 语法 属性值 阅读全文

posted @ 2018-10-06 22:21 asdyzh 阅读(1169) 评论(0) 推荐(0) 编辑

C#有关日期的使用方法

摘要: DateTime dt = DateTime.Now; //当前时间 2 3 DateTime startWeek = dt.AddDays(1 - Convert.ToInt32(dt.DayOfWeek.ToString("d"))); //本周周一 4 DateTime endWeek = s 阅读全文

posted @ 2018-10-06 20:50 asdyzh 阅读(296) 评论(0) 推荐(0) 编辑

GridView 高亮某一行

摘要: <script type="text/javascript"> $(document).ready(function () { $("#GridView tr ").click(function () { $(this).addClass('selected') //为选中项添加高亮 .siblin 阅读全文

posted @ 2018-10-06 17:50 asdyzh 阅读(405) 评论(0) 推荐(0) 编辑

DropDownList绑定数据库

摘要: this.DropDownList_设备列表.DataSource = dt_eq;//设置数据源 this.DropDownList_设备列表.DataTextField = "equipment_name";//设置所要读取的数据表里的列名 this.DropDownList_设备列表.Data 阅读全文

posted @ 2018-10-06 15:35 asdyzh 阅读(1159) 评论(0) 推荐(0) 编辑

Request.Querystring中文乱码问题解决

摘要: 现象:近期项目中用到查询字符串传值,如果传递的是英文一切正常,但是传递中文时,使用request.querystring[]得到的是乱码。 原因:不知道为什么,可能是编码不一致问题 解决方法1:修改web.config文件添加<globalization requestEncoding="gb231 阅读全文

posted @ 2018-10-06 14:23 asdyzh 阅读(650) 评论(0) 推荐(0) 编辑

SQL复制表及表结构

摘要: 复制表结构和数据SQL语句 1:复制表结构及数据到新表 select * into 目的数据库名.dbo.目的表名 from 原表名 select * into my0735home.dbo.infoMianTest from infoMian 2:备份表的一部分列(不写*而写出列的列表) sele 阅读全文

posted @ 2018-10-06 14:20 asdyzh 阅读(21696) 评论(0) 推荐(1) 编辑

asp.net文件夹没有读写权限的特殊问题

摘要: 如果asp.net网站权限都配置正确,但是仍然出现某一个文件或者文件夹没有读写权限时 原来只用在Web.config里面的 <system.web>节点下增加<identity impersonate="true" /> 就可以了。 阅读全文

posted @ 2018-10-06 14:18 asdyzh 阅读(262) 评论(0) 推荐(0) 编辑

常用转义字符例如&amp;的含义

摘要: &amp中的amp就是英文ampersand的缩写,该词的意思是&这个符号&amp; 是 HTML 中 & 的表示方法.即在html中用&amp;表示&符号 阅读全文

posted @ 2018-10-06 13:35 asdyzh 阅读(109191) 评论(0) 推荐(8) 编辑

jquery ajax 与 update panel

摘要: 回调函数 阅读全文

posted @ 2018-10-06 11:16 asdyzh 阅读(171) 评论(0) 推荐(0) 编辑

上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 42 下一页

导航