温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:智能选课系统源码及论坛
当前文件路径:XuanKeLunWen/student/Evaluation.aspx

1<%@ Page Language="C#" MasterPageFile="~/student/Student.master" AutoEventWireup="true" CodeFile="Evaluation.aspx.cs" Inherits="studnet_Evaluation" Title="Untitled Page" %> 2
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"> 3
<table border="0" cellpadding="0" cellspacing="0" style="border-right: #66ccff 0.1mm solid; 4
border-top: #66ccff 0.1mm solid; border-left: #66ccff 0.1mm solid; 5
border-bottom: #66ccff 0.1mm solid; font-size: 14px; width: 100%;"> 6
<tr> 7
<td align="center" colspan="3" style="border-bottom: #66ccff 0.1mm solid; height: 18px; background-color: #99cccc;"> 8
教师评定</td> 9
</tr> 10
<tr> 11
<td style="width: 88px; height: 26px"> 12
选择教师:</td> 13
<td style="width: 256px; height: 26px"> 14
<asp:DropDownList ID="DropDownList1" runat="server" Width="169px" DataSourceID="AccessDataSource1" DataTextField="Tname" DataValueField="Tname"> 15
</asp:DropDownList></td> 16
<td style="width: 81px; height: 26px"> 17
</td> 18
</tr> 19
<tr> 20
<td style="width: 88px;" rowspan="3" valign="top"> 21
评定:</td> 22
<td style="width: 256px; height: 38px" align="center" rowspan="2" valign="top"> 23
<asp:RadioButtonList ID="RadioButtonList1" runat="server" RepeatDirection="Horizontal" 24
Width="320px"> 25
<asp:ListItem Selected="True" Value="1">优秀</asp:ListItem> 26
<asp:ListItem Value="2">优良</asp:ListItem> 27
<asp:ListItem Value="3">一般</asp:ListItem> 28
<asp:ListItem Value="4">差</asp:ListItem> 29
<asp:ListItem Value="5">很差</asp:ListItem> 30
</asp:RadioButtonList> 31
写下给老师的意见</td> 32
<td style="width: 81px;" rowspan="3"> 33
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="RadioButtonList1" 34
Display="Dynamic" ErrorMessage="没有评论"></asp:RequiredFieldValidator></td> 35
</tr> 36
<tr> 37
</tr> 38
<tr> 39
<td style="width: 256px; height: 88px" valign="top"> 40
<asp:TextBox ID="TextBox1" runat="server" Height="171px" Width="322px"></asp:TextBox></td> 41
</tr> 42
<tr> 43
<td align="center" colspan="3" style="height: 19px"> 44
<asp:LinkButton ID="LinkButton1" runat="server" BackColor="DeepSkyBlue" ForeColor="Black" 45
Width="63px" OnClick="LinkButton1_Click">提交</asp:LinkButton> </td> 46
</tr> 47
</table> 48
<asp:AccessDataSource ID="AccessDataSource1" runat="server" DataFile="~/database/xuanke.mdb" 49
SelectCommand="SELECT [Tname], [Tid] FROM [Teacher]"></asp:AccessDataSource> 50
</asp:Content> 51
52




