iew1.Rows.Count; i++)
{
GridViewRow row = GridView1.Rows[i];
bool isChecked = ((CheckBox) row.FindControl ("chkSelect")).Checked;
if (isChecked)
{
str.Append(GridView1.Rows[i].Cells[2].Text);
}
}
Response.Write(str.ToString());
接下来,我们添加一个全选的选择框,当用户选择该框时,可以全部选择 gridview中的checkbox.首先我们在headtemplate中如下设计:
<HeaderTemplate>
<input id="chkAll" onclick="javascript:SelectAllCheckboxes (this);" runat="server" type="checkbox" />
</HeaderTemplate>
javascript部分的代码如下所示:
<script language=javascript>
function SelectAllCheckboxes(spanChk){
var oItem = spanChk.children;
var theBox=(spanChk.type=="checkbox")? spanChk:spanChk.children.item[0];
xState=theBox.checked;
elm=theBox.form.elements;
for(i=0;i<elm.length;i++)
if(elm[i].type=="checkbox" && elm[i].id!=theBox.id)
{
if(elm[i].checked!=xState)
elm[i].click();
}
}
</script>
三、gridview中删除记录的处理
在gridview中,我们都希望能在删除记录时,能弹出提示框予以提示,在 asp.net 1.1中,都可以很容易实现,那么在asp.net 2.0中要如何实现呢?下面 举例子说明,首先在HTML页面中设计好如下代码:
<asp:GridView DataKeyNames="CategoryID" ID="GridView1" runat="server" AutoGenerateColumns="False" OnRowCommand="GridView1_RowCommand" OnRowDataBound="GridView1_RowDataBound" OnRowDeleted="GridView1_RowDeleted" OnRowDeleting="GridView1_RowDeleting">
<Columns>
<asp:BoundField DataField="CategoryID" HeaderText="CategoryID" />
<asp:BoundField DataField="CategoryName" HeaderText="CategoryName" />
<asp:TemplateField HeaderText="Select">
<ItemTemplate>
<asp:LinkButton ID="LinkButton1" CommandArgument=''<%# Eval ("CategoryID") %>'' CommandName="Delete" runat="server">Delete</asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
在上面的代码中,我们设置了一个链接linkbutton,其中指定了commandname 为"Delete",commandargument为要删除的记录的ID编号,注意一旦commandname 设置为delete这个名称后,gridview中的GridView_RowCommand 和 GridView_Row_Deleting 事件都会被激发接者,我们处理其rowdatabound事件中 :
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
LinkButton l = (LinkButton)e.Row.FindControl ("LinkButton1");
l.Attributes.Add(''onclick", "javascript:return " + "confirm("是 否要删除该记录? " +
DataBinder.Eval(e.Row.DataItem, "id") + "'')");
}
}
在这段代码中,首先检查是否是datarow,是的话则得到每个linkbutton,再 为其添加客户端代码,基本和asp.net 1.1的做法差不多。
之后,当用户选择了确认删除后,我们 |