runat="server"
ProviderName="System.Data.SqlClient"
ConnectionString="<%$ ConnectionStrings:Northwind %>"
SelectCommand="SELECT EmployeeID, FirstName, LastName, TitleOfCourtesy, City FROM Employees" >
runat="server"
DataSourceID="sourceEmployees"
Font-Names="Verdana"
Font-Size="Small"
GridLines="Horizontal"
AutoGenerateColumns="False"
DataKeyNames="EmployeeID"
EnableSortingAndPagingCallbacks="True"
PageSize="5"
HorizontalAlign="Justify"
OnRowCreated="GridView1_RowCreated">
BorderStyle="Solid"
BorderWidth="2px"
BackColor="Bisque"
HorizontalAlign="Left" />
HeaderText="ID"
InsertVisible="False"
ReadOnly="True"
SortExpression="EmployeeID" >
HeaderText="First Name"
SortExpression="FirstName" >
HeaderText="Last Name"
SortExpression="LastName" >
HeaderText="Title Of Courtesy"
SortExpression="TitleOfCourtesy" >