zoukankan      html  css  js  c++  java
  • EnableViewState and Button Type(DataGrid中按钮类型与EnableViewState的关系)

    We have a Datagrid which contains a template column with a button in it,
    as well as an actual button column. If either of the buttons are
    clicked, the ItemCommand event does not fire.

    If however, the ButtonType of the ButtonColumn is changed to
    "LinkButton" instead of "PushButton", the event fires normally!

    Why on earth is this happening? I presume this a bug in .NET? (We are
    using 1.1 final).

    <asp:DataGrid id="JobsDataGrid" runat="server"
            AutoGenerateColumns="False"
            DataKeyField="JobNumber" >
    <Columns>
    <asp:TemplateColumn>
    <ItemTemplate>
        <asp:Button ID="RunJobButton" Runat="server"
            CommandName="RunJob"
            CommandArgument="1"
            Text="Run Task 1" />
    </ItemTemplate>

    </asp:TemplateColumn>
    <asp:ButtonColumn ButtonType="PushButton" CommandName="RunJob"
        Text="Run Task 2" />
    </Columns>
    </asp:DataGrid>

    Any ideas how to fix this would be appeciated.

    Nick...
    Reply to this message...
     
        
    Jeffrey Tan[MSFT] (VIP)
    Hi Nick,

    Thanks for posting in this group.
    I think maybe you bind the database data into your datagrid every time in
    WebForm load event.
    Because when you click the button, the page postback to the server,
    Page_Load event fires, the datagrid will be rebind again. So the
    ItemCommand will not fire(the datagrid was reinitialized). (You can
    demonstrate this through add a breakpoint in ItemCommand eventhandler)
    So you should bind the datagrid only when the page is not postback.
    Code snippet like this:

    //I use default sqlserver database to fill the datagrid
    private void Page_Load(object sender, System.EventArgs e)
    {
        // Put user code to initialize the page here
        //Response.Write(Session[0]);
        Response.Write(this.GetPostBackEventReference(hoho));
        if(!IsPostBack)
        {
            SqlDataAdapter adapter=new SqlDataAdapter("select * from
    jobs","server=localhost;database=pubs;uid=sa;pwd=");
            DataSet ds=new DataSet();
            adapter.Fill(ds);
            DataGrid1.DataSource=ds;
            DataGrid1.DataBind();
        }
    }

    this.DataGrid1.ItemCommand += new
    System.Web.UI.WebControls.DataGridCommandEventHandler(this.DataGrid1_ItemCom
    mand);

    private void DataGrid1_ItemCommand(object source,
    System.Web.UI.WebControls.DataGridCommandEventArgs e)
    {
        if(e.CommandName=="buttonclick")
        {
            Response.Write(e.Item.Cells[3].Text);
        }
    }

    Best regards,
    Jeffrey Tan
    Microsoft Online Partner Support
    Get Secure! - www.microsoft.com/security
    This posting is provided "as is" with no warranties and confers no rights.

    Reply to this message...
     
        
    Nick Gilbert
    Hi Jeffrey,

    The datagrid needed to be rebound every single time as the data always
    changed (it had a column which reflected the live status of a job).

    The problem seems to be that if you bind on every postback *AND* have
    viewstate turned on for the datagrid, the event does not fire. We
    disabled viewstate on the datagrid and the ItemCommand events then fired
    as expected.

    Thanks for your help,

    Nick...

    Jeffrey Tan[MSFT] wrote:
    [Original message clipped]

    Reply to this message...
     
        
    Jeffrey Tan[MSFT] (VIP)
    Hi Nick,

    I am glad it works, if you have further questions, please feel free to tell
    me.

    Best regards,
    Jeffrey Tan
    Microsoft Online Partner Support
    Get Secure! - www.microsoft.com/security
    This posting is provided "as is" with no warranties and confers no rights.

    Reply to this message...
     
        
    Sonali.NET[MVP] (VIP)
    You might not be handling PostBack in the Page Load
    Try adding the statements
    if not Page.IsPostback then
    'your code
    end if

  • 相关阅读:
    CUDA运行时 Runtime(一)
    CUDA C++程序设计模型
    CUDA C++编程手册(总论)
    深度学习到底有哪些卷积?
    卷积神经网络去雾去雨方法
    马斯克如何颠覆航天? 1/5385成本,c++和python编程!
    CUDA 9中张量核(Tensor Cores)编程
    利用表达式调用全局变量计算出错原因
    述函数的作用,浏览器执行函数的过程
    表达式的差异和相同点
  • 原文地址:https://www.cnblogs.com/cy163/p/26634.html
Copyright © 2011-2022 走看看