myindg--静水流深

自言自语,自娱自乐,自以为是,自始至终,自强不息。

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2013年8月16日

摘要: 1、Gridview中,对其进行“编辑”、“更新”操作时,需要设置其中的绑定的文本框的宽度,让用户在“编辑”状态下,在其中的文本框中能显示更多的字符。 错误方法:下面的方法不好使: protected void grvwVideoDisp_RowEditing(object sender, GridViewEditEventArgs e) { this.grvwVideoDisp.EditIndex = e.NewEditIndex; ((TextBox)(grvwVideoDisp.Rows[e.NewEditIndex].Cells[0].Controls[0])).Width = ... 阅读全文
posted @ 2013-08-16 17:38 myindg 阅读(218) 评论(0) 推荐(0) 编辑

2013年1月28日

摘要: 1、利用网页Cookie传值 下面为起始页Defaut1.aspx.cs部分代码:protected void Button1_Click1(object sender, EventArgs e){ HttpCookie cookie_name = new HttpCookie("myname"); cookie_name.Value = this.TextBox1.Text; Response.AppendCookie(cookie_name); //Server.Transfer("ShowerInfo.aspx"); Response... 阅读全文
posted @ 2013-01-28 17:25 myindg 阅读(2598) 评论(4) 推荐(0) 编辑

2013年1月14日

摘要: 在Gridview的使用中,需要记住的几点:1、在表格的删除、更新等操作中,如何关联数据库的主键。 如有一学生信息表:有如下几个字段:studID--学生ID,studNo--学号,studName--姓名,studSex--性别,studScore--成绩。其中,studID为表的主键。下面有两种方法,使Gridview设置和获取表的主键。方法一: 使用Gridview的“编辑列”中的“字段”对话框,由CommandField生成的“删除”按钮,见下面的代码:<asp:CommandField ShowDeleteButton="True" />Girdvie 阅读全文
posted @ 2013-01-14 22:32 myindg 阅读(2549) 评论(0) 推荐(2) 编辑