上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 42 下一页

2018年10月7日

JS控制GridView行选择

摘要: ASP.NET里的GridView控件使用非常广泛,虽然其功能强大,但总有一些不尽如人意的地方。比如在选择行的时候,它就没有UltraWebGrid做的友好;UltraWebGrid允许用户设置是否显示选择框,设置允许,则会在最左边多出一列,表示选择的行。而GridView则没有这个功能。但没有,不 阅读全文

posted @ 2018-10-07 17:21 asdyzh 阅读(273) 评论(0) 推荐(0) 编辑

JavaScript操作服务器控件之Gridview控件

摘要: 1.JavaScript脚本如下: <script language="javascript" type="text/javascript"> function gridviewControl() { //获取GridView的客户端元素 var table=document.getElementB 阅读全文

posted @ 2018-10-07 17:19 asdyzh 阅读(551) 评论(0) 推荐(0) 编辑

GridView_RowDataBound 常用方法

摘要: 1.这个就不用说,鼠标经过行颜色变化 protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow)//判定 阅读全文

posted @ 2018-10-07 17:09 asdyzh 阅读(674) 评论(0) 推荐(0) 编辑

GridView ,后台修改 跟新完毕,前端 未跟新处理

摘要: //Response.Redirect(Request.Url.ToString());//重新定位 GridView_dept.DataBind(); //重新绑定都可以 阅读全文

posted @ 2018-10-07 12:08 asdyzh 阅读(182) 评论(0) 推荐(0) 编辑

怎么判断DropDownList是否选择值

摘要: 判断其 SelectedIndex 属性值 >0。 阅读全文

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

GridView.SelectedIndex

摘要: 获取或设置 GridView 控件中的选中行的索引。 获取或设置 GridView 控件中的选中行的索引。 获取或设置 GridView 控件中的选中行的索引。 C#复制 属性值 Int32 GridView 控件中选中行从零开始的索引。 默认值为 -1,指示当前未选择行。 Int32 GridVi 阅读全文

posted @ 2018-10-07 11:05 asdyzh 阅读(608) 评论(0) 推荐(0) 编辑

DropDownlist数据SelectedIndexChanged触发问题解决

摘要: 1、设置DropDownlist的AutoPostBack为True 2、绑定DropDownlist数据时出现了重复项, 在载入数据时保存数据状态应该写在Load事件中的if (!IsPostBack) 条件下 3、必须保证页面只有一个runat="server"的<From>表单 4、页面中有一 阅读全文

posted @ 2018-10-07 10:49 asdyzh 阅读(317) 评论(0) 推荐(0) 编辑

error:将字符串转换为 uniqueidentifier 时失败

摘要: sql server查询中出现 将字符串转换为 uniqueidentifier 时失败异常 原因为id设置为uniqueidentifier 字段,在where查询时需要做转换cast(id as varchar(36)),例如 阅读全文

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

UniqueIdentifier 数据类型

摘要: UniqueIdentifier 数据类型用于存储GUID的值,占用16Byte。 SQL Server将UniqueIdentifier存储为16字节的二进制数值,Binary(16),按照特定的格式显示,显示的格式是:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx,其中 阅读全文

posted @ 2018-10-07 10:09 asdyzh 阅读(401) 评论(0) 推荐(0) 编辑

在Sql2005中,向表中插入数据时遇到uniqueidentifier列,如何插入数据?

摘要: Sql2005中,提供了uniqueidentifier 数据类型。说白了,就是个GUID,这种类型开发时倒是很有必要的。 今天程序中遇到了这个问题:表里定义了一个uniqueidentifier 列,Asp.net程序需要向表中插入新的数据。Insert 语句由数据源控件自动生成:INSERT I 阅读全文

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

上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 42 下一页

导航