gridview中的commandname

前台代码:

        <asp:GridView ID="ClientGridview" runat="server" AutoGenerateColumns="false" DataKeyNames="ClientID"
            Font-Size="Small" OnRowCommand="ClientGridview_RowCommand">
            <Columns>
                <asp:BoundField DataField="ClientID" HeaderText="客户ID" ReadOnly="true" />
                <asp:BoundField DataField="ClientName" HeaderText="客户名" />
                <asp:ButtonField CommandName="ShowTeam" HeaderText="团队信息" Text="团队信息" />
                <asp:ButtonField CommandName="ClientInfo" HeaderText="详细信息" Text="详细信息" />
            </Columns>
        </asp:GridView>

 

 

后台代码:

有两种操作:1.查看DetailsView中的信息(CommandName=ClientInfo)

                 2.转向另一个页面(CommandName=ShowTeam)

 

protected void ClientGridview_RowCommand(object sender, GridViewCommandEventArgs e)
    {
        conn = ConfigurationManager.AppSettings["str"];
        con = new SqlConnection(conn);
        con.Open();
        int index = Convert.ToInt32((string)e.CommandArgument);
        int ClientID = Convert.ToInt32(ClientGridview.DataKeys[index].Value.ToString());
        Session["ClientID"] = ClientID;
        if ((string)e.CommandName == "ShowTeam")
            Response.Redirect("SearchTeamInfo.aspx");
        else
        {
            if ((string)e.CommandName == "ClientInfo")
            {
                da = new SqlDataAdapter("select * from client where ClientID='" + ClientID + "'", con);
                ds = new DataSet();
                da.Fill(ds, "Client");
                ClientDetailsView.DataSource = ds;
                ClientDetailsView.DataBind();         
            }
        }
        con.Close();
    }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值