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" >
<Столбцы>
<Шаблон элемента>
<%# this.GridView1.PageIndex * this.GridView1.PageSize + this.GridView1.Rows.Count + 1%>
<Редититемтемплате>
<%--
<Шаблон элемента>
<Редититемтемплате>
<Шаблон элемента>
<Редититемтемплате>
<Шаблон элемента>
Колонки>
/// <сводка>
/// Использование GridView
/// сводка>
частная пустота GridViewBind()
{
检索数据库
строка strSql = "ВЫБРАТЬ * ИЗ DB1";
得到数据集
this.GridView1.DataSource=conn.GetDs(strSql).Tables[0].DefaultView;
это.GridView1.DataBind();
}
/// <сводка>
/// 编辑当前行
/// сводка>
///
///
protected void GridView1_RowEditing (отправитель объекта, GridViewEditEventArgs e)
{
GridView1.EditIndex = e.NewEditIndex;
//当前编辑行背景色高亮
this.GridView1.EditRowStyle.BackColor = Color.FromName("#F7CE90");
Гридвиевбинд();
}
/// <сводка>
/// 取消编辑状态
/// сводка>
///
///
protected void GridView1_RowCancelingEdit (отправитель объекта, GridViewCancelEditEventArgs e)
{
GridView1.EditIndex = -1;
Гридвиевбинд();
}
/// <сводка>
/// 删除记录过程
/// сводка>
///
///
protected void GridView1_RowDeleting (отправитель объекта, GridViewDeleteEventArgs e)
{
//得到单位编号
строка rowToDelete = GridView1.DataKeys[e.RowIndex].Values[0].ToString();
// 转换为整数
//int ID=Convert.ToInt32(rowToDelete);
//从数据库中删除
строка str = "УДАЛЕНИЕ ИЗ DB1, где DB1_1=" + "'" + rowToDelete + "'" + "";
пытаться
{
conn.RunSql(стр);
// 重新绑定数据
Гридвиевбинд();
}
поймать (Исключение ex)
{
Response.Write("数据库错误,错误原因:" + ex.Message);
Ответ.Конец();
}
}
/// <сводка>
/// 更新记录过程
/// сводка>
///
///
protected void GridView1_RowUpdating (отправитель объекта, GridViewUpdateEventArgs e)
{
идентификатор строки = 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;
//判断表单项是否有空并给出提示信息
если (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)
{
если (err.Code.ToString() == "1")
conn.Alert("Оборудование: 已存在具有相同主键的记录", Page);
еще
conn.Alert("Оборудование: 未能添加记录", Page);
}
Response.Write("");
// 返回浏览状态
GridView1.EditIndex = -1;
Гридвиевбинд();
}
/// <сводка>
/// 分页事件
/// сводка>
///
///
protected void GridView1_PageIndexChanging (отправитель объекта, GridViewPageEventArgs e)
{
GridView1.PageIndex = e.NewPageIndex;
Гридвиевбинд();
}
/// <сводка>
/// Создание раскрывающегося списка DropDownList绑定值
/// сводка>
///
///
protected void GridView1_RowDataBound (отправитель объекта, GridViewRowEventArgs e)
{
//为DropDownList绑定值
if (((DropDownList)e.Row.FindControl("ddlXL")) != null)
{
DropDownList ddlXL = (DropDownList)e.Row.FindControl("ddlXL");
ddlXL.Items.Очистить();
ddlXL.Items.Add(новый 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='';");
}
//单击行改变行背景颜色
если (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onclick", "this.style.backgroundColor='#99cc00'; this.style.color='buttontext';this.style.cursor='default';");
}
}