<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" 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”OnRowDataBound =“GridView1_RowDataBound OnSelectedIndex”已更改 =“GridView1_SelectedIndexChanged”OnSorting =“GridView1_Sorting”>
<栏目>
<asp:TemplateField HeaderText="序号">
<项目模板>
<%# this.GridView1.PageIndex * this.GridView1.PageSize + this.GridView1.Rows.Count + 1%>
</项目模板>
</asp:模板字段>
<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:模板字段>
<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:模板字段>
<asp:TemplateField HeaderText="操作" ShowHeader="False">
<编辑项目模板>
<asp:LinkButton ID="LinkButton1" runat="server" CausesValidation="True" CommandName="Update"
Text="更新"></asp:LinkButton>
<asp:LinkButton ID="LinkButton2" runat="server" CausesValidation="False" CommandName="取消"
Text="取消"></asp:LinkButton>
</编辑项目模板>
<项目模板>
<asp:LinkButton ID="LinkButton1" runat="server" CausesValidation="False" CommandName="编辑"
Text="编辑" OnClientClick="return recognize('确认要编辑吗?');"></asp:LinkButton>
<asp:LinkButton ID="LinkButton3" runat="服务器" CausesValidation="False" CommandName="删除"
Text="删除" OnClientClick="return recognize('确认要删除吗?');"></asp:LinkButton>
<asp:LinkButton ID="LinkButton2" runat="服务器" CausesValidation="False" CommandName="选择"
Text="选择"></asp:LinkButton>
</项目模板>
</asp:模板字段>
</列>
<AlternatingRowStyle BackColor="海蓝宝石" />
</asp:GridView>
/// <摘要>
/// 将数据绑定到GridView
/// </摘要>
私有无效 GridViewBind()
{
检索数据库
string strSql = "从 DB1 选择 *";
获取数据集
this.GridView1.DataSource=conn.GetDs(strSql).Tables[0].DefaultView;
this.GridView1.DataBind();
}
/// <摘要>
/// 编辑当前行
/// </摘要>
/// <参数名称=“发件人”></参数>
/// <参数名称=“e”></参数>
protected void GridView1_RowEditing(对象发送者,GridViewEditEventArgs e)
{
GridView1.EditIndex = e.NewEditIndex;
//当前编辑行背景色高亮
this.GridView1.EditRowStyle.BackColor = Color.FromName("#F7CE90");
GridViewBind();
}
/// <摘要>
/// 取消编辑状态
/// </摘要>
/// <参数名称=“发件人”></参数>
/// <参数名称=“e”></参数>
protected void GridView1_RowCancelingEdit(对象发送者,GridViewCancelEditEventArgs e)
{
GridView1.EditIndex = -1;
GridViewBind();
}
/// <摘要>
/// 删除记录过程
/// </摘要>
/// <参数名称=“发件人”></参数>
/// <参数名称=“e”></参数>
protected void GridView1_RowDeleting(对象发送者,GridViewDeleteEventArgs e)
{
//获取单位数量
字符串 rowToDelete = GridView1.DataKeys[e.RowIndex].Values[0].ToString();
//转换为整数
//int ID=Convert.ToInt32(rowToDelete);
//从数据库中删除
string str = "DELETE FROM DB1 where DB1_1=" + "'" + rowToDelete + "'" + "";
尝试
{
conn.RunSql(str);
//重新绑定数据
GridViewBind();
}
catch(异常前)
{
Response.Write("数据库错误,错误原因:" + ex.Message);
响应.End();
}
}
/// <摘要>
/// 更新记录过程
/// </摘要>
/// <参数名称=“发件人”></参数>
/// <参数名称=“e”></参数>
protected void GridView1_RowUpdating(对象发送者,GridViewUpdateEventArgs e)
{
字符串 ID = GridView1.DataKeys[e.RowIndex].Values[0].ToString();
字符串 DB1_1 = ((TextBox)GridView1.Rows[e.RowIndex].FindControl("TextBox1")).Text;
//字符串DB1_2 = ((TextBox)GridView1.Rows[e.RowIndex].FindControl("TextBox2")).Text;
字符串 DB1_2 = (((DropDownList))GridView1.Rows[e.RowIndex].FindControl("ddlXL")).SelectedItem.Text;
//填写表单项是否有空并给出提示信息
if (DB1_1 == "" || DB1_2 == "")
{
conn.Alert("请输入完整信息!", Page);
返回;
}
尝试
{
conn.BuilderEdit("从 DB1 选择*,其中 DB1_1 ='" + ID + "'");
conn.dr["DB1_1"] = DB1_1;
conn.dr["DB1_2"] = DB1_2;
conn.BuilderEditClose();
}
捕获(OracleException 错误)
{
if (err.Code.ToString() == "1")
conn.Alert("错误:已存在具有相同主键的记录", Page);
别的
conn.Alert("错误:未能添加记录", Page);
}
Response.Write("<script language='javascript'>alert('数据已被保存!');</script>");
//返回浏览状态
GridView1.EditIndex = -1;
GridViewBind();
}
/// <摘要>
/// 分页事件
/// </摘要>
/// <参数名称=“发件人”></参数>
/// <参数名称=“e”></参数>
protected void GridView1_PageIndexChanging(对象发送者,GridViewPageEventArgs e)
{
GridView1.PageIndex = e.NewPageIndex;
GridViewBind();
}
/// <摘要>
/// 加入鼠标效果及为DropDownList绑定值
/// </摘要>
/// <参数名称=“发件人”></参数>
/// <参数名称=“e”></参数>
protected void GridView1_RowDataBound(对象发送者,GridViewRowEventArgs e)
{
//为DropDownList绑定值
if (((DropDownList)e.Row.FindControl("ddlXL")) != null)
{
DropDownList ddlXL = (DropDownList)e.Row.FindControl("ddlXL");
ddlXL.Items.Clear();
ddlXL.Items.Add(new ListItem("博士", "1"));
ddlXL.Items.Add(new ListItem("硕士", "2"));
ddlXL.Items.Add(new ListItem("学士", "3"));
}
//加入鼠标滑过的高亮效果
if (e.Row.RowType == DataControlRowType.DataRow)//判定当前的行是否属于datarow类型的行
{
//当鼠标放上去的时候先保存当前行的背景颜色并给附加一个颜色
e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='yellow',this.style.fontWeight='';");
//当还原鼠标离开的时候将背景颜色以前的颜色
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentcolor,this.style.fontWeight='';");
}
//单行改变背景颜色
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onclick", "this.style.backgroundColor='#99cc00'; this.style.color='buttontext';this.style.cursor='default';");
}
}