20110104 学习记录:在gridview中用linkbutton控件

 

点击gridview里的linkbutton,跳转直其他页面。

 前台页面:(做个模板列,里面放入LinkButton按钮)
  <asp:TemplateField HeaderText="查看/修改">
                    <ItemTemplate>
                        <asp:LinkButton ID="LinkButton1" runat="server" CommandArgument='<%# Eval("que_tpye") %>' CommandName="GetInfo">详细信息</asp:LinkButton>
                    </ItemTemplate>
                </asp:TemplateField>

后台代码:  在GridView行命令事件中
protected void GridView1_ItemCommand(object sender, GridViewCommandEventArgs e)
    {

        if (e.Item.ItemType == GridItemType.Item || e.Item.ItemType == GridItemType.AlternatingItem || e.Item.ItemType == GridItemType.SelectedItem)
        {
            if (e.CommandName = "GetInfo")
            {
                    Response.Redirect("shitixiangxixinxi.aspx?id=" + Convert.ToInt32(e.CommandArgument));
            }
        } 
   }
在shitixiangxixinxi页面  接收id传过来的值就行了


 

<asp:GridView ID="GridView1" SkinID="myGridviewSkin" runat="server" Width="100%"
                                    AutoGenerateColumns="False" AllowPaging="True" DataKeyNames="id,status" OnRowDataBound="GridView1_RowDataBound">

                   <asp:TemplateField HeaderText="操作" ItemStyle-HorizontalAlign="Center">
                                            <ItemTemplate>
                                                <asp:LinkButton ID="btnFavorite" runat="server" OnClick="btnFavorite_OnClick">[收藏]</asp:LinkButton>
                                            </ItemTemplate>
                                        </asp:TemplateField>

 

------------------------cs代码----------------------

protected void btnFavorite_OnClick(object sender, EventArgs e)
    {
        //行号
        int row = ((GridViewRow)((LinkButton)sender).NamingContainer).RowIndex;
        Response.Write("[" + row + "]" + this.GridView1.DataKeys[row]["id"].ToString());
        Response.Write("[" + row + "]" + this.GridView1.DataKeys[row]["status"].ToString());
    }

   

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        GridViewRow row = e.Row;
        if(row.RowType == DataControlRowType.DataRow)
        {
            string status = this.GridView1.DataKeys[row.RowIndex]["status"].ToString();
            if (status != "1")
            {
                LinkButton btn = (LinkButton)row.FindControl("btnFavorite");
                btn.Enabled = false;
            }
        }
    }

 

 

 

 


 

GridView使用DataKeyNames的例子 & CommandArgument传递多个参数 & 获取GridView编辑状态下单元格里的值

 

 

在asp.net2.0中,当我们需要在GridView的ItemDataBound之类的事件中需要获取当前行的一些关联性的数据值,但这些数 据值又 不能直接体现在GridView的列中显示出来,这时我们可以采用DataKeyNames的方式来获取此类数据,看下面的代码示例:

前台代码:
        <asp:GridView ID="GridView1" runat="server" DataKeyNames="Grup" OnRowCommand="GridView1_RowCommand" AutoGenerateColumns="False">
            <Columns>
                <asp:TemplateField>
                    <ItemTemplate>
                        <asp:Label ID="Label1" runat="server" Text='<%#Eval("GrupName") %>'></asp:Label>
                    </ItemTemplate>
                </asp:TemplateField>
                <asp:ButtonField Text="按钮" />
            </Columns>
        </asp:GridView>
其中:Grup为我们想使用但不需要显示的列。(如果有多个字段,使用逗号分开)

后台代码:
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack )
        {
            DataTable dt = new DataTable();
            dt.Columns.Add("Grup");
            dt.Columns.Add("GrupName");

            dt.Rows.Add(new object[] { 0,"营业部" });
            dt.Rows.Add(new object[] { 1,"市场部" });

            this.GridView1.DataSource = dt;
            this.GridView1.DataBind();
        }
    }

    protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
    {
        // 获取当前行索引
        int index = Convert.ToInt32(e.CommandArgument);

        // 取出当前行数据键值对象中的值
        string strGrup = ((GridView)sender).DataKeys[index].Values["Grup"].ToString()
    }

顺便补充一句。
如果你使用模板列中放置按钮控件的方式,要想在按钮事件中获取这种字段值就更简单了。

只需要在按钮的CommandArgument属性设置为想绑定的字段,如:

<asp:TemplateField>
     <ItemTemplate>
         <asp:Button ID="Button2" runat="server" OnClick="Button2_Click" Text="Button" CommandArgument=' <%#Eval("Grup") %>' />
     </ItemTemplate>
</asp:TemplateField>

按钮事件中如是写:

protected void Button2_Click(object sender, EventArgs e)
{
    string strGrup = ((Button)sender).CommandArgument.ToString();
}

 


数据绑定以及Container.DataItem的具体分析

数据绑定以及Container.DataItem的具体分析
灵活的运用数据绑定操作
绑定到简单属性:<%#UserName%>
绑定到集合:<asp:ListBox id="ListBox1" datasource='<%# myArray%>' runat="server">
绑定到表达式:<%#(class1.property1.ToString() + "," + class1.property2.ToString())%>
绑定到方法返回值:<%# GetSafestring(str) %>
绑定到Hashtable:<%# ((DictionaryEntry)Container.DataItem).Key%>
绑定到ArrayList:<%#Container.DataItem %>

若数组里里放的是对象则可能要进行必要的转换后再绑定如:
<%#((对象类型)Container.DataItem).属性%>

绑定到DataView,DataTable,DataSet:
<%#((DataRowView)Container.DataItem)["字段名"]%>或
<%#((DataRowView)Container.DataItem).Rows[0]["字段名"]%>
要格式化则:
<%#string.Format("格式",((DataRowView)Container.DataItem)["字段名"])%>
<%#DataBinder.(Container.DataItem,"字段名","格式")%>

绑定到DataReader:
<%#((IDataReader)Container.DataItem).字段名%>

当然为了方便一般使用最多的就是DataBinder类的方法了.不过这样对于同时要绑定大量的数据效率要低一些

在绑定数据时经常会用到这个句程序:<%# DataBinder.(Container.DataItem,"xxxx")%>或者<%# DataBinder.(Container,"DataItem.xxxx")%>
今天又学到一种,而且微软也说这种方法的效率要比以上两种高。

<%# ((DataRowView)Container.DataItem)["xxxx"]%>

很有用的,这样可以在前台页面做好多事情了。

还要记住要这样用必须要在前台页面导入名称空间System.Data,否则会生成错误信息。

<%@ Import namespace="System.Data" %>

这种用法其实和<%# ((DictionaryEntry)Container.DataItem).Key%>是一个道理。

绑定到DataSet、DataTable时:

<%#((System.Data.DataRowView)Container.DataItem)["字段名"]%>
<%#((System.Data.DataRowView)Container.DataItem)[索引]%>


绑定到DataReader时:
<%#((System.Data.Common.DbDataRecord)Container.DataItem)[索引]%>
<%#((System.Data.Common.DbDataRecord)Container.DataItem)["字段名"]%>

关键是Container这个东西,它比较神秘。它的名称空间是System.ComponentModel。对于它我还需要进一步理解。

初学.NET,现在在看DataGrid控件,在ItemTemplate显示数据时,
DataBinder.(Container.DataItem,"Name")和Container.DataItem("Name")有什么区别?


DataBinder是System.Web里面的一个静态类,它提供了方法用于简化数据绑定表达式的编写,但是它使用的方式是通过 Reflection等开销比较大的方法来达到易用性,因此其性能并不是最好的。而Container则根本不是任何一个静态的对象或方法,它是 ASP.NET页面编译器在数据绑定事件处理程序内部声明的局部变量,其类型是可以进行数据绑定的控件的数据容器类型(如在Repeater内部的数据绑 定容器叫RepeaterItem),在这些容器类中基本都有DataItem属性,因此你可以写Container.DataItem,这个属性返回的 是你正在被绑定的数据源中的那个数据项。如果你的数据源是DataTable,则这个数据项的类型实际是DataRowView

 



总结:调用绑定值的语句:((Button)sender).CommandArgument.ToString()

http://www.cnblogs.com/UouHt/archive/2008/12/08/1350634.html

 

 

 

 

 

 

你可能感兴趣的:(GridView)