<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 =“Vperdating) ound =“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 其中 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';");
}
}