<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" PageSize="10"
width="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" OnSelectedIndexChanged="GridView1_SelectedIndexChanged" OnSorting="GridView1_Sorting" >
<コラム>
<asp:TemplateField HeaderText="序号">
<アイテムテンプレート>
<%# this.GridView1.PageIndex * this.GridView1.PageSize + this.GridView1.Rows.Count + 1%>
</ItemTemplate>
</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>
</EditItemTemplate>
<アイテムテンプレート>
<asp:Label ID="Label1" runat="server" Text='<%# Bind("xueliText") %>'></asp:Label>
</ItemTemplate>
</asp:テンプレートフィールド>
<asp:TemplateField HeaderText="学历名" SortExpression="DB1_2">
<アイテムテンプレートの編集>
<asp:TextBox ID="TextBox2" runat="server" Text='<%# Bind("DB1_2") %>'></asp:TextBox>
</EditItemTemplate>
<アイテムテンプレート>
<asp:Label ID="Label2" runat="server" Text='<%# Bind("DB1_2") %>'></asp:Label>
</ItemTemplate>
</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="Cancel"
Text="取消"></asp:LinkButton>
</EditItemTemplate>
<アイテムテンプレート>
<asp:LinkButton ID="LinkButton1" runat="server" CausesValidation="False" CommandName="Edit"
Text="编辑" OnClientClick="returnconfirm('确认要编辑吗?');"></asp:LinkButton>
<asp:LinkButton ID="LinkButton3" runat="server" CausesValidation="False" CommandName="Delete"
Text="删除" OnClientClick="returnconfirm('确认要删除吗?');"></asp:LinkButton>
<asp:LinkButton ID="LinkButton2" runat="server" CausesValidation="False" CommandName="Select"
Text="选择"></asp:LinkButton>
</ItemTemplate>
</asp:テンプレートフィールド>
</列>
<AlternatingRowStyle BackColor="アクアマリン" />
</asp:GridView>
/// <概要>
/// データベースを GridView に固定する
/// </概要>
プライベート void GridViewBind()
{
データベース検索
文字列 strSql = "SELECT * FROM DB1";
データ集を取得
this.GridView1.DataSource=conn.GetDs(strSql).Tables[0].DefaultView;
this.GridView1.DataBind();
}
/// <概要>
/// 编辑当前行
/// </概要>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void GridView1_RowEditing(オブジェクト送信者, GridViewEditEventArgs e)
{
GridView1.EditIndex = e.NewEditIndex;
//当前编辑行背景色高亮
this.GridView1.EditRowStyle.BackColor = Color.FromName("#F7CE90");
GridViewBind();
}
/// <概要>
/// 取消编辑状態态
/// </概要>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void GridView1_RowCancelingEdit(オブジェクト送信者、GridViewCancelEditEventArgs e)
{
GridView1.EditIndex = -1;
GridViewBind();
}
/// <概要>
/// 删除记录过程
/// </概要>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void GridView1_RowDeleting(オブジェクト送信者、GridViewDeleteEventArgs e)
{
//单位编号に到達
string 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);
Response.End();
}
}
/// <概要>
/// 更新记录过程
/// </概要>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void GridView1_RowUpdating(オブジェクト送信者、GridViewUpdateEventArgs e)
{
文字列 ID = GridView1.DataKeys[e.RowIndex].Values[0].ToString();
string DB1_1 = ((TextBox)GridView1.Rows[e.RowIndex].FindControl("TextBox1")).Text;
//string 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("select * from DB1 where 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);
"
<script language='javascript'>alert('数据被保存!');</script>");
// 浏览状態を返す
GridView1.EditIndex = -1;
GridViewBind();
}
/// <概要>
/// 分页イベント
/// </概要>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void GridView1_PageIndexChanging(オブジェクト送信者、GridViewPageEventArgs e)
{
GridView1.PageIndex = e.NewPageIndex;
GridViewBind();
}
/// <概要>
/// ネズミ标效果及びDropDownList绑定值を追加します
/// </概要>
/// <param name="sender"></param>
/// <param name="e"></param>
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';");
}
}