<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Attend.aspx.vb" Inherits="Attend.Attend" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
#form1
{
height: 365px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div style="height: 362px">
<asp:Label ID="lblGrade" runat="server" Text="3"></asp:Label>
<asp:Label ID="lblName" runat="server" Text="Name"></asp:Label>
<asp:Label ID="lblSaved" runat="server" Text="Saved"></asp:Label>
<asp:Button ID="btnNewDay" runat="server" Text="New Day" />
<asp:Label ID="lblRowNumber" runat="server" Text="Label"></asp:Label>
<br />
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
DataSourceID="SqlDataSource1" Height="168px" BackColor="White"
BorderColor="#336666" BorderStyle="Double" BorderWidth="3px" CellPadding="4"
GridLines="Horizontal">
<Columns>
<ItemTemplate> <asp:LinkButton ID="lbPresent" runat="server" CausesValidation="False" CommandName="Present" CommandArgument="<%# Container.DataItemIndex %>"> </asp:LinkButton> </ItemTemplate> <ItemTemplate> <asp:LinkButton ID="lbAbsent" runat="server" CausesValidation="False" CommandName="Absent" CommandArgument="<%# Container.DataItemIndex %>"> </asp:LinkButton> </ItemTemplate> <ItemTemplate> <asp:LinkButton ID="lbTardy" runat="server" CausesValidation="False" CommandName="Tardy" CommandArgument="<%# Container.DataItemIndex %>"> </asp:LinkButton>
</Columns>
<FooterStyle BackColor="White" ForeColor="#333333" />
<HeaderStyle BackColor="#336666" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#336666" ForeColor="White" HorizontalAlign="Center" />
<RowStyle BackColor="White" ForeColor="#333333" />
<SelectedRowStyle BackColor="#339966" Font-Bold="True" ForeColor="White" />
<SortedAscendingCellStyle BackColor="#F7F7F7" />
<SortedAscendingHeaderStyle BackColor="#487575" />
<SortedDescendingCellStyle BackColor="#E5E5E5" />
<SortedDescendingHeaderStyle BackColor="#275353" />
</asp:GridView>
<asp:Label ID="lblEmail" runat="server" Text="Email: "></asp:Label>
<asp:TextBox ID="txtEmail" runat="server" Width="193px"></asp:TextBox>
<asp:Button ID="EmailReport" runat="server" Font-Size="Smaller"
Text="Email Report" />
<br />
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:robots2000ConnectionString %>"
SelectCommand="RetrieveStudentsbyGrade" SelectCommandType="StoredProcedure">
<SelectParameters>
<asp:ControlParameter ControlID="lblGrade" Name="Grade" PropertyName="Text"
Type="Int32" />
</SelectParameters>
</asp:SqlDataSource>
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
<br />
<asp:Label ID="Label2" runat="server" Text="Label"></asp:Label>
<br />
<asp:Label ID="Label3" runat="server" Text="Label"></asp:Label>
</div>
<br />
</form>
</body>
</html>
DougP