<asp:GridView ID = "GridView1" runat = "เซิร์ฟเวอร์" AutoGenerateColumns = "เท็จ" PageSize = "10"
ความกว้าง = "542px" AllowPaging = "True" AllowSorting = "True"
DataKeyNames = "DB31_1, DB31_2" OnRowCancelingEdit = "GridView1_RowCancelingEdit" OnRowDeleting = "GridView1_RowDeleting" OnRowEditing = "GridView1_RowEditing" OnRowUpdating = "GridView1_RowUpdating" OnPageIndexChanging = "GridView1_PageIndexChanging" RowDataBound" OnSelectedIndexChanged="GridView1_SelectedIndexChanged" OnSorting="GridView1_Sorting">
<คอลัมน์>
<asp:TemplateField HeaderText="序号">
<เทมเพลตรายการ>
<%# this.GridView1.PageIndex * this.GridView1.PageSize + this.GridView1.Rows.Count + 1%>
</เทมเพลตรายการ>
</asp:TemplateField>
<asp:TemplateField HeaderText="学历代码" SortExpression="DB1_1">
<แก้ไขเทมเพลตรายการ>
<%--<asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("DB1_1") %>'></asp:TextBox>--%>
<asp:DropDownList ID ="ddlXL" runat="server" DataValueField='<%# Bind("DB1_1") %>'></asp:DropDownList>
</แก้ไขเทมเพลตรายการ>
<เทมเพลตรายการ>
<asp:Label ID="Label1" runat="server" Text='<%# Bind("xueliText") %>'></asp:Label>
</เทมเพลตรายการ>
</asp:TemplateField>
<asp:TemplateField HeaderText="学历名称" SortExpression="DB1_2">
<แก้ไขเทมเพลตรายการ>
<asp:TextBox ID="TextBox2" runat="server" Text='<%# Bind("DB1_2") %>'></asp:TextBox>
</แก้ไขเทมเพลตรายการ>
<เทมเพลตรายการ>
<asp:Label ID="Label2" runat="server" Text='<%# Bind("DB1_2") %>'></asp:Label>
</เทมเพลตรายการ>
</asp:TemplateField>
<asp:TemplateField HeaderText="操作" ShowHeader="False">
<แก้ไขเทมเพลตรายการ>
<asp:LinkButton ID = "LinkButton1" runat = "เซิร์ฟเวอร์" CausesValidation = "True" CommandName = "อัปเดต"
Text="更新"></asp:LinkButton>
<asp:LinkButton ID = "LinkButton2" runat = "เซิร์ฟเวอร์" CausesValidation = "False" CommandName = "ยกเลิก"
Text="取消"></asp:LinkButton>
</แก้ไขเทมเพลตรายการ>
<เทมเพลตรายการ>
<asp:LinkButton ID = "LinkButton1" runat = "เซิร์ฟเวอร์" CausesValidation = "False" CommandName = "แก้ไข"
Text="编辑" OnClientClick="return ยืนยัน('确认要编辑吗?');"></asp:LinkButton>
<asp:LinkButton ID = "LinkButton3" runat = "เซิร์ฟเวอร์" CausesValidation = "False" CommandName = "ลบ"
Text="删除" OnClientClick="return ยืนยัน('确认要删除吗?');"></asp:LinkButton>
<asp:LinkButton ID = "LinkButton2" runat = "เซิร์ฟเวอร์" CausesValidation = "False" CommandName = "เลือก"
Text="选择"></asp:LinkButton>
</เทมเพลตรายการ>
</asp:TemplateField>
</คอลัมน์>
<AlternatingRowStyle BackColor="อความารีน" />
</asp:GridView>
/// <สรุป>
/// 绑定数据到GridView
/// </สรุป>
โมฆะส่วนตัว GridViewBind()
-
检索数据库
สตริง strSql = "เลือก * จาก DB1";
得到数据集
this.GridView1.DataSource=conn.GetDs(strSql).Tables[0].DefaultView;
นี้.GridView1.DataBind();
-
/// <สรุป>
/// 编辑当前行
/// </สรุป>
/// <ชื่อพารามิเตอร์ = "ผู้ส่ง" ></ พารามิเตอร์>
/// <ชื่อพารามิเตอร์ = "e" ></ พารามิเตอร์>
ป้องกันเป็นโมฆะ GridView1_RowEditing (ผู้ส่งวัตถุ GridViewEditEventArgs e)
-
GridView1.EditIndex = e.NewEditIndex;
//当前编辑行背景色高亮
this.GridView1.EditRowStyle.BackColor = Color.FromName("#F7CE90");
GridViewBind();
-
/// <สรุป>
/// 取消编辑状态
/// </สรุป>
/// <ชื่อพารามิเตอร์ = "ผู้ส่ง" ></ พารามิเตอร์>
/// <ชื่อพารามิเตอร์ = "e" ></ พารามิเตอร์>
ป้องกันโมฆะ GridView1_RowCancelingEdit (ผู้ส่งวัตถุ GridViewCancelEditEventArgs e)
-
GridView1.EditIndex = -1;
GridViewBind();
-
/// <สรุป>
/// 删除记录过程
/// </สรุป>
/// <ชื่อพารามิเตอร์ = "ผู้ส่ง" ></ พารามิเตอร์>
/// <ชื่อพารามิเตอร์ = "e" ></ พารามิเตอร์>
ป้องกันโมฆะ GridView1_RowDeleting (ผู้ส่งวัตถุ GridViewDeleteEventArgs e)
-
//得到单位编号
สตริง rowToDelete = GridView1.DataKeys[e.RowIndex].Values[0].ToString();
//转换为整数
//int ID=Convert.ToInt32(rowToDelete);
//从数据库中删除
string str = "ลบจาก DB1 โดยที่ DB1_1=" + "'" + rowToDelete + "'" + "";
พยายาม
-
conn.RunSql(str);
//重新绑定数据
GridViewBind();
-
catch (ข้อยกเว้น เช่น)
-
Response.Write("数据库错误,错误原因:" + ex.Message);
การตอบสนองสิ้นสุด();
}
}
/// <สรุป>
/// 更新记录过程
/// </สรุป>
/// <ชื่อพารามิเตอร์ = "ผู้ส่ง" ></ พารามิเตอร์>
/// <ชื่อพารามิเตอร์ = "e" ></ พารามิเตอร์>
ป้องกันเป็นโมฆะ GridView1_RowUpdating (ผู้ส่งวัตถุ GridViewUpdateEventArgs e)
-
ID สตริง = GridView1.DataKeys[e.RowIndex].Values[0].ToString();
สตริง DB1_1 = ((กล่องข้อความ)GridView1.Rows[e.RowIndex].FindControl("TextBox1")).ข้อความ;
//string DB1_2 = ((กล่องข้อความ)GridView1.Rows[e.RowIndex].FindControl("TextBox2")).ข้อความ;
สตริง DB1_2 = (((DropDownList))GridView1.Rows[e.RowIndex].FindControl("ddlXL")).SelectedItem.Text;
//判断表单项是否有空并给出提示信息
ถ้า (DB1_1 == "" || DB1_2 == "")
-
conn.Alert("请输入完整信息!", หน้า);
กลับ;
-
พยายาม
-
conn.BuilderEdit("เลือก * จาก DB1 โดยที่ DB1_1 ='" + ID + "'");
conn.dr["DB1_1"] = DB1_1;
conn.dr["DB1_2"] = DB1_2;
conn.BuilderEditClose();
-
จับ (ข้อผิดพลาด OracleException)
-
ถ้า (err.Code.ToString() == "1")
conn.Alert("错误:已存在具有相同主键的记录", หน้า);
อื่น
conn.Alert("错误:未能添加记录", หน้า);
}
Response.Write("<script language='javascript'>alert('数据已被保存!');</script>");
//返回浏览状态
GridView1.EditIndex = -1;
GridViewBind();
-
/// <สรุป>
/// 分页事件
/// </สรุป>
/// <ชื่อพารามิเตอร์ = "ผู้ส่ง" ></ พารามิเตอร์>
/// <ชื่อพารามิเตอร์ = "e" ></ พารามิเตอร์>
ป้องกันโมฆะ GridView1_PageIndexChanging (ผู้ส่งวัตถุ GridViewPageEventArgs e)
-
GridView1.PageIndex = e.NewPageIndex;
GridViewBind();
-
/// <สรุป>
/// 加入鼠标效果及为DropDownList绑定值
/// </สรุป>
/// <ชื่อพารามิเตอร์ = "ผู้ส่ง" ></ พารามิเตอร์>
/// <ชื่อพารามิเตอร์ = "e" ></ พารามิเตอร์>
โมฆะที่ได้รับการป้องกัน GridView1_RowDataBound (ผู้ส่งวัตถุ GridViewRowEventArgs e)
-
//为DropDownList绑定值
ถ้า (((DropDownList)e.Row.FindControl("ddlXL")) != null)
-
DropDownList ddlXL = (DropDownList)e.Row.FindControl("ddlXL");
ddlXL.รายการเคลียร์();
ddlXL.Items.Add(รายการใหม่("博士", "1"));
ddlXL.Items.Add(รายการใหม่("硕士", "2"));
ddlXL.Items.Add(รายการใหม่("学士", "3"));
}
//加入鼠标滑过的高亮效果
if (e.Row.RowType == DataControlRowType.DataRow)//判定当前的行是否属于datarow类型的行
-
//当鼠标放上去的时候 先保存当前行的背景颜色 并给附一颜色
e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.พื้นหลังสี;this.style.พื้นหลังสี='สีเหลือง',this.style.fontWeight='';");
//当鼠标离的时候 将背景颜色还原的以前的颜色
e.Row.Attributes.Add("onmouseout", "this.style.พื้นหลังสี=currentcolor,this.style.fontWeight='';");
-
//单击行改变行背景颜色
ถ้า (e.Row.RowType == DataControlRowType.DataRow)
-
e.Row.Attributes.Add("onclick", "this.style.พื้นหลังสี='#99cc00'; this.style.color='buttontext';this.style.cursor='default';");
-
-