📄 addcourse.aspx
字号:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="addcourse.aspx.cs" Inherits="addcourse" %>
<!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>
</head>
<body>
<form id="form1" runat="server">
<div>
<table border="1" style="width: 300px; height: 273px">
<tr>
<td colspan="2" style="text-align: center">
<strong><span style="font-size: 16pt">添加课程</span></strong></td>
</tr>
<tr>
<td style="width: 87px; text-align: center">
课程编号</td>
<td style="width: 100px">
<asp:TextBox ID="txtNo" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 87px; text-align: center">
课程名称</td>
<td style="width: 100px">
<asp:TextBox ID="txtName" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 87px; text-align: center">
课 时</td>
<td style="width: 100px">
<asp:TextBox ID="txtPeriod" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 87px; text-align: center">
学 分</td>
<td style="width: 100px">
<asp:TextBox ID="txtCredit" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 87px; text-align: center">
课程类型</td>
<td style="width: 100px">
<asp:DropDownList ID="dropKind" runat="server" Width="153px">
<asp:ListItem>公共基础课</asp:ListItem>
<asp:ListItem>专业基础课</asp:ListItem>
<asp:ListItem>专业课</asp:ListItem>
<asp:ListItem>选修课</asp:ListItem>
</asp:DropDownList></td>
</tr>
<tr>
<td style="width: 87px; text-align: center">
课程说明</td>
<td style="width: 100px">
<asp:TextBox ID="txtElse" runat="server" Height="45px" TextMode="MultiLine"></asp:TextBox></td>
</tr>
<tr>
<td colspan="2" style="height: 30px; text-align: center">
<asp:LinkButton ID="lbtnOK" runat="server" OnClick="lbtnOK_Click">确 定</asp:LinkButton>
<asp:LinkButton ID="lbtnReset" runat="server" OnClick="lbtnReset_Click">重 置</asp:LinkButton> <asp:LinkButton
ID="lbtnBack" runat="server" OnClick="lbtnBack_Click">返 回</asp:LinkButton></td>
</tr>
</table>
</div>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -