« Solving Could not find stored procedure dbo.aspnet_CheckSchemaVersion in ASP.NET Membership | Home | Updated Roadsend PHP Compiler 2.9.8 packages »
ASP.NET GridView All-In-One Quick Reference
By admin | July 17, 2010
Here is a quick collection of snippets where one can quickly lookup the necessities of setting up a GridView for the purposes of displaying information to the viewer through a database (for example, MySQL):
Adding Columns of Data
DataTable dt = new DataTable("Tablename");
dt.Columns.Add("Column1");
dt.Columns.Add("Column2");
dt.Columns.Add("Column3");
// for every row
DataRow dr = dt.NewRow();
dr["Column1"] = "Testing";
dr["Column2"] = "Blah";
dr["Column3"] = "Big Blah";
dt.Rows.Add(dr);
Binding the Data (and storage across sessions)
DataView dv = new DataView(dt); Session["data"] = dv; gridviewctrl.DataSource = dv; gridviewctrl.DataBind();
Paging
Note: This needs AllowPaging to be set to “true”. The following code goes in the “PageIndexChanging” callback.
gridviewctrl.PageIndex = e.NewPageIndex; gridviewctrl.DataSource = Session["data"]; gridviewctrl.DataBind();
Sorting
Note: This needs AllowSorting to be set to “true” and ensure all columns you want sorted have a “SortExpression” that matches the column name in the DataTable. The following code goes in the “Sorting” callback.
string dir;
if (e.SortDirection == SortDirection.Ascending) {
dir = "ASC";
} else {
dir = "DESC";
}
((DataView)Session["Data"]).Sort = e.SortExpression + " " + dir;
gridviewctrl.DataSource = Session["data"];
gridviewctrl.DataBind();
<asp:ButtonField>s
Create a <asp:ButtonField> declaration as follows: <asp:ButtonField ButtonType=”Button” Text=”Button Text Here” CommandName=”DoSomething” />
if (e.CommandName == "DoSomething") {
// get Index
int index = Convert.ToInt32(e.CommandArgument);
string test = ((DataView)Session["Data"]).Table.Rows[index]["Column1"];
Response.Redirect("http://www.google.com/search?q=" + test.ToString()");
}
If you found this article helpful or interesting, please help Compdigitec spread the word. Don’t forget to subscribe to Compdigitec Labs for more useful and interesting articles!
Topics: Internet, Windows | 8 Comments »

September 13th, 2025 at 19:24
… [Trackback]
[…] Read More here on that Topic: compdigitec.com/labs/2010/07/17/asp-net-gridview-all-in-one-quick-reference/ […]
September 14th, 2025 at 18:11
… [Trackback]
[…] There you will find 96696 additional Information to that Topic: compdigitec.com/labs/2010/07/17/asp-net-gridview-all-in-one-quick-reference/ […]
September 17th, 2025 at 19:25
… [Trackback]
[…] Find More Info here to that Topic: compdigitec.com/labs/2010/07/17/asp-net-gridview-all-in-one-quick-reference/ […]
September 19th, 2025 at 01:35
… [Trackback]
[…] Info to that Topic: compdigitec.com/labs/2010/07/17/asp-net-gridview-all-in-one-quick-reference/ […]
September 28th, 2025 at 18:29
… [Trackback]
[…] Information to that Topic: compdigitec.com/labs/2010/07/17/asp-net-gridview-all-in-one-quick-reference/ […]
October 3rd, 2025 at 20:34
… [Trackback]
[…] Here you can find 8801 additional Information to that Topic: compdigitec.com/labs/2010/07/17/asp-net-gridview-all-in-one-quick-reference/ […]
October 4th, 2025 at 10:44
… [Trackback]
[…] Read More on on that Topic: compdigitec.com/labs/2010/07/17/asp-net-gridview-all-in-one-quick-reference/ […]
October 21st, 2025 at 18:28
… [Trackback]
[…] Find More on that Topic: compdigitec.com/labs/2010/07/17/asp-net-gridview-all-in-one-quick-reference/ […]