EmployeeList.ascx 2.0 KB

1234567891011121314151617181920212223242526272829303132
  1. <%@ Control Language="C#" AutoEventWireup="true" Inherits="UpdatePanelUserControl.EmployeeList" Codebehind="EmployeeList.ascx.cs" %>
  2. <asp:UpdatePanel ID="EmployeeListUpdatePanel" runat="server">
  3. <ContentTemplate>
  4. <asp:Label ID="LastUpdatedLabel" runat="server"></asp:Label>
  5. <asp:GridView ID="EmployeesGridView" runat="server" AllowPaging="True" AllowSorting="True"
  6. AutoGenerateColumns="False" CellPadding="4" DataKeyNames="EmployeeID" DataSourceID="EmployeesDataSource"
  7. ForeColor="#333333" GridLines="None">
  8. <FooterStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
  9. <Columns>
  10. <asp:CommandField ShowSelectButton="True">
  11. <ItemStyle Width="50px" />
  12. </asp:CommandField>
  13. <asp:BoundField DataField="LastName" HeaderText="Last Name" SortExpression="LastName">
  14. <ItemStyle Width="120px" />
  15. <HeaderStyle HorizontalAlign="Left" />
  16. </asp:BoundField>
  17. <asp:BoundField DataField="FirstName" HeaderText="First Name" SortExpression="FirstName">
  18. <ItemStyle Width="100px" />
  19. <HeaderStyle HorizontalAlign="Left" />
  20. </asp:BoundField>
  21. </Columns>
  22. <RowStyle BackColor="#FFFBD6" ForeColor="#333333" />
  23. <SelectedRowStyle BackColor="#FFCC66" Font-Bold="True" ForeColor="Navy" />
  24. <PagerStyle BackColor="#FFCC66" ForeColor="#333333" HorizontalAlign="Center" />
  25. <HeaderStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
  26. <AlternatingRowStyle BackColor="White" />
  27. </asp:GridView>
  28. <asp:SqlDataSource ID="EmployeesDataSource" runat="server" ConnectionString="<%$ ConnectionStrings:AdventureWorksConnectionString %>"
  29. SelectCommand="SELECT HumanResources.Employee.EmployeeID, Person.Contact.LastName, Person.Contact.FirstName FROM Person.Contact INNER JOIN HumanResources.Employee ON Person.Contact.ContactID = HumanResources.Employee.ContactID ORDER BY Person.Contact.LastName, Person.Contact.FirstName">
  30. </asp:SqlDataSource>
  31. </ContentTemplate>
  32. </asp:UpdatePanel>