Re: Can we change Position for "Upload Multiple Files" Button Postion?

  •  01-09-2009, 5:33 AM

    Re: Can we change Position for "Upload Multiple Files" Button Postion?

    Hi,
    that is a bug of the GridView .
     
    you can try :
     
    protected override void OnInit(EventArgs e)
     {
      base.OnInit(e);
      GridView1.RowCreated+=new GridViewRowEventHandler(GridView1_RowCreated);
     }
     protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e)
     {
      if (e.Row.RowIndex == -1) return;
      e.Row.ID = "Row" + e.Row.RowIndex;
     }
     
    Regards,
    Terry
     
View Complete Thread