1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| protected void Button1_Click(object sender, EventArgs e)
{
try
{
GridView1.DataSource = "";
GridView1.DataSourceID = "";
GridView1.DataSource=ObjectDataSource3 ;
// GridView1 = new GridViewSortEventHandler(Grid);
// GridView1.OnSorting;
// GridView1.d = DataGridViewColumnSortMode.Automatic;
GridView1.AllowPaging = true;
GridView1.AllowSorting = true;
GridView1.DataBind();
}
catch (Exception ex)
{
if (!IsClientScriptBlockRegistered("Error"))
RegisterClientScriptBlock("Error",
String.Concat("<script language=\"javascript\" type=\"text/javascript\">\n", "<!--\n", "alert('", ex.Message.Replace("'", @"\'"), "'); ", "//-->\n",
"</script>")
);
Response.Redirect("ManageAccounts.aspx");
}
} |
Partager