<%@ Page Language=VB Debug=true %><%@ Import Namespace="System.Data" %>DataGrid 4 Control Sample Page id="lblMessage" runat="server"/> id="dg1" runat="server" Width="90%" BorderColor="black" CellPadding=3 CellSpacing="0" Font-Name="Trebuchet MS" Font-Size="10pt" ForeColor="Black" BackColor="Beige" AlternatingItemStyle-ForeColor="Cornsilk" AlternatingItemStyle-BackColor="DarkBlue" AlternatingItemStyle-Font-Name="Arial" AlternatingItemStyle-Font-Italic="True" HeaderStyle-BackColor="Burlywood" HeaderStyle-Font-Bold="True" AutoGenerateColumns="False" AllowSorting="True" OnSortCommand="Sort_Grid"> HeaderText="Employee ID" DataNavigateUrlField="EmployeeID" DataNavigateUrlFormatString="./test.aspx?EmployeeID={0}" DataTextField="EmployeeID" Target="_self" SortExpression="Employee ID" /> HeaderText="Last Name" DataField="EmployeeLastName" SortExpression="Last Name" /> HeaderText="First Name" DataField="EmployeeFirstName" /> HeaderText="Salary" DataField="Salary" DataFormatString="{0:C}" SortExpression="Salary" /> HeaderText="Birth Date" DataField="BirthDate" DataFormatString="{0:d}" SortExpression="Birth Date" />