Lengzihaohong

学无止境(专注于DotNet技术)
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

获取某行的字段ID值(GridView模板列)

Posted on 2007-06-15 16:56  神话  阅读(1995)  评论(0编辑  收藏  举报
aspx页面
<asp:GridView runat="server" ID="grd" AutoGenerateColumns="false" DataKeyNames="leagueID" OnRowCommand="grd_RowCommand"  OnRowCreated="grd_RowCreated">
<Columns>
<asp:TemplateField HeaderText="我要加入">
                    
<ItemStyle HorizontalAlign="Center" />
                    
<ItemTemplate>
                        
&nbsp;<asp:Button runat="server" ID="btnJoin" Text="加 入" CommandName="btnJoin" />
                    
</ItemTemplate>
                 
</asp:TemplateField>
</Columns>
</asp:GridView>

aspx.cs类文件
 protected void grd_RowCommand(object sender, GridViewCommandEventArgs e)
    
{
        
if (e.CommandName == "btnJoin")
        
{
                
int index = Data.GetInt(e.CommandArgument);
                
int iLeagueID = Data.GetInt(grd.DataKeys[index].Value);
                Response.Write(
"<script>alert('" + iLeagueID + "')</script>");
        }

    }


    
protected void grd_RowCreated(object sender, GridViewRowEventArgs e)
    
{
        
if (e.Row.RowType == DataControlRowType.DataRow)
        
{
                Button btnJoin 
= (Button)e.Row.FindControl("btnJoin");
                btnJoin.CommandArgument 
= e.Row.RowIndex.ToString();
        }

    }