Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

22 lines
484 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class NoHeaderAtAll : System.Web.UI.Page
{
protected void Page_Load (object sender, EventArgs e)
{
var data = new List<TestData> ();
GridView1.DataSource = data;
GridView1.DataBind ();
}
protected void GridView1_RowCreated (object sender, GridViewRowEventArgs args)
{
log.InnerText = "OnRowCreated called";
}
}