GridView Value Pass

时间:2014-03-31 17:22:47

标签: c# asp.net gridview

我添加了一个模板字段,并将其设为按钮点击事件。然后我试图将值发送到事件方法,并希望使用该值进行一些操作。我写了以下代码。它没有编译错误,但是当我点击Present浏览器时显示以下消息:

无效的回发或回调参数。使用配置或<%@ Page EnableEventValidation =“true”%>启用事件验证在一个页面中。出于安全考虑,此功能可验证回发或回调事件的参数是否来自最初呈现它们的服务器控件。如果数据有效且符合预期,请使用ClientScriptManager.RegisterForEventValidation方法注册回发或回调数据以进行验证。

代码:

 <div>
                <asp:Panel ID="PanelAllEmployee" runat="server" Height="400px">
                  <asp:GridView ID="GridViewAllEmployee" runat="server" AutoGenerateColumns="False" style="position:absolute;left:219px; top:202px;" >
                      <Columns>
                          <asp:BoundField DataField="Id" HeaderText="Id" />
                          <asp:BoundField DataField="Name" HeaderText="Name" />
                          <asp:BoundField DataField="Department" HeaderText="Department" />
                          <asp:BoundField DataField="EmailID" HeaderText="Email ID" />
                          <asp:BoundField DataField="Position" HeaderText="Position" />
                          <asp:TemplateField HeaderText="Present">
                              <ItemTemplate>
                                  <asp:Button ID="Button1" runat="server" CommandArgument='<%#Eval("Id") %>' OnClick="Button1_Click" Text="Present" />
                              </ItemTemplate>
                          </asp:TemplateField>
                      </Columns>
                  </asp:GridView>

                    <asp:Label ID="Label1" runat="server" Text="Label"> </asp:Label>

               </asp:Panel>
              </div>

事件方法:

protected void Button1_Click(object sender, EventArgs e)
    {
        LinkButton lnk = (LinkButton)sender;
        string id = lnk.CommandArgument.ToString();
        Label1.Text = id;
    }

请善待我的帮助。我是初学者。精心回答非常感谢。谢谢你的时间。

1 个答案:

答案 0 :(得分:1)

设置

代码隐藏

中的page指令中的

EnableEventValidation="false"

代表:

<%@ Page Language="C#" EnableEventValidation="false" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>

编辑:.aspx:

  <asp:Button ID="Button1" runat="server" 
 OnClick = "Button1_Click" CommandArgument='<%#Eval("Id") %>'  Text="Present" />

cs code:

  protected void Button1_Click(object sender, EventArgs e)
    {
        Button btn = (Button)sender;

        string id = btn.CommandArgument.ToString();


    }

使用 ButtonField OnRowCommand 事件

<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns = "false" 

    OnRowCommand = "OnRowCommand">

 <Columns>

  <asp:ButtonField CommandName = "ButtonField"  DataTextField = "CustomerID"

        ButtonType = "Button"/>

 </Columns>

</asp:GridView>

代码背后:

protected void OnRowCommand(object sender, GridViewCommandEventArgs e)

{

    int index = Convert.ToInt32(e.CommandArgument);

    GridViewRow gvRow = GridView1.Rows[index]; 

}