courseinfo.aspx.cs

来自「一个研究生管理系统 具体的情况自己看了」· CS 代码 · 共 61 行

CS
61
字号
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class student_courseinfo : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        try
        {
            if (Session["Student"].ToString() != "true")
            {
                Response.Write("<script>parent.window.href=\"../login.aspx\"</script>");
                Response.End();
            }
        }
        catch
        {
            Response.Write("<script>parent.window.href=\"../login.aspx\"</script>");
            Response.End();
        }
    }
    public void PrintCourseInfoTable()
    {
        /*
         * <tr>
           <td align="center" class="mode4" style="width: 141px; height: 22px">
               <span style="font-size: 10pt">
               课程编号</span></td>
          <td align="center" class="mode4" style="width: 191px; height: 22px;">
              <span style="font-size: 10pt">
              课程名称</span></td>
           <td align="center" class="mode4" style="width: 149px; height: 22px">
               <span style="font-size: 10pt">
               教师姓名</span></td>
          <td align="center" class="mode4" style="width: 185px; height: 22px;">
              <span style="font-size: 10pt">
              上课地点</span></td>
           <td align="center" class="mode4" style="width: 173px; height: 22px">
               <span style="font-size: 10pt">
               上课时间</span></td>
          <td align="center" class="mode4" style="height: 22px; width: 60px;">
              <span style="font-size: 10pt">
              补修</span></td>
           <td align="center" class="mode4" style="width: 308px; height: 22px">
               <span style="font-size: 10pt">
               上课周次</span></td>
       
    </tr> 
         * */
        //DataTable dt=
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?