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