Click here to Skip to main content
15,886,199 members
Articles / Web Development / ASP.NET

Race to Linux - Race 3: Reports Starter Kit using Mono SqlServer/Firebird

Rate me:
Please Sign up or sign in to vote.
2.33/5 (2 votes)
30 Sep 20052 min read 52.7K   328   15  
Reports Starter Kit port to Linux using Mono
<html>
	<head>
		<title>ASP.NET Reports Starter Kit Documentation</title><LINK href="style.css" type="text/css" rel="stylesheet"></head>
	<body class="NormalIndent">
		<h1>Simple&nbsp;Report
		</h1>
		<p><b>Description:</b> &nbsp;&nbsp;&nbsp;The simple report displays a list of all 
			customer contacts information for the company. This is useful for sales people 
			who constantly are on the road since it is accessible from anywhere 
			through&nbsp;the web.
		</p>
		<p><strong>Overview:</strong> &nbsp;&nbsp;&nbsp;The simple report 
			demonstrates&nbsp;using the Datagrid control for listing a result set 
			from&nbsp;the database.
		</p>
		<p><IMG src="./images/1x1.gif" width="25"> <IMG src="./images/simpleoverview.png">
			<br>
		</p>
		<p><strong>Implementation Notes:&nbsp;</strong> &nbsp;&nbsp;
		</p>
		<p>The Datagrid can also be used to support deleting and&nbsp;editing.&nbsp; 
			However, the purpose of this report is to show how simple and quick it is to 
			display data from a database in an ASP.NET Web Form with paging and sorting 
			features.</p>
		<P>To allow paging, set the DataGrid AllowPaging property to true and create an 
			event handler, PageIndexChanged, to change the CurrentPageIndex property.</P>
		<pre>
		
   private void CustomerGrid_PageIndexChanged(object source, System.Web.UI.WebControls.DataGridPageChangedEventArgs e)
   {
      CustomerGrid.CurrentPageIndex = e.NewPageIndex;
      BindGrid();
   }
   </pre>
		<P>Implementing sorting is also as simple as paging:&nbsp; set the AllowSorting to 
			true, implement OnSort event handler, and set the SortExpression for each bound 
			column.</P>
		<pre>
		
   private void CustomerGrid_Sort(object source, System.Web.UI.WebControls.DataGridSortCommandEventArgs e)
   {
      // change sort field
      SortField = (string)e.SortExpression;
   
      // re-bind to display new sorting
      BindGrid();
   }
   </pre>
		<P>The Datagrid can also be custom formatted to the desired look and feel.&nbsp; In 
			this report page, customer contact information is displayed using alternating 
			row color.&nbsp; To enable this feature, simply assign a style 
			to&nbsp;AlternatingItemStyle-CssClass attribute.</P>
		<pre>		
   &lt;asp:datagrid id="CustomerGrid" AlternatingItemStyle-CssClass="Content" runat="server" AllowSorting="True" AllowPaging="True" PageSize="20"&gt;
   &lt;AlternatingItemStyle CssClass="Content"&gt;&lt;/AlternatingItemStyle&gt;
   &lt;Columns&gt;
   &lt;asp:BoundColumn DataField="CompanyName" SortExpression="CompanyName" HeaderText="Company"&gt;
      &lt;HeaderStyle CssClass="CategoryHeader"&gt;&lt;/HeaderStyle&gt;
      &lt;ItemStyle CssClass="ItemStyle"&gt;&lt;/ItemStyle&gt;
   &lt;/asp:BoundColumn&gt;
		</pre>
	</body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Uruguay Uruguay
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions