⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 seehelpteacherinfo.aspx.cs

📁 一个研究生管理系统 具体的情况自己看了
💻 CS
字号:
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_seehelpteacherinfo : System.Web.UI.Page
{
    public DataRow drow = null;
    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();
        }
        if (!IsPostBack)
        {
            try
            {
                drow = Student.Student.GetTheDetailInfoFromStationInfo(Convert.ToInt32(Request["stationid"].ToString()));                
            }
            catch (Exception ex)
            {
                Response.Write("<script> alert(\'" + ex.Message + "\');</script>");
            }
        }
    }
    public void ShowRemark()
    {
        try
        {
            if (drow != null)
                Response.Write(drow["Remark"].ToString());
            else
                Response.Write("&nbsp");
        }
        catch (Exception ex)
        {
            Response.Write("<script> alert(\'" + ex.Message + "\');</script>");
        }
    }
    public void ShowStationID()
    {
        try
        {
            if (drow != null)
                Response.Write(drow["StationID"].ToString());
            else
                Response.Write("&nbsp");
        }
        catch (Exception ex)
        {
            Response.Write("<script> alert(\'" + ex.Message + "\');</script>");
        }
    }
    public void ShowStationName()
    {
        try
        {
            if (drow != null)
                Response.Write(drow["StationName"].ToString());
            else
                Response.Write("&nbsp");
        }
        catch (Exception ex)
        {
            Response.Write("<script> alert(\'" + ex.Message + "\');</script>");
        }
    }
    public void ShowIsApplied2()
    {
        try
        {
            if (drow != null)
                Response.Write(drow["IsApplied2"].ToString());
            else
                Response.Write("&nbsp");
        }
        catch (Exception ex)
        {
            Response.Write("<script> alert(\'" + ex.Message + "\');</script>");
        }
    }
    public void ShowStationDescrip()
    {
        try
        {
            if (drow != null)
                Response.Write(drow["StationDescrip"].ToString());
            else
                Response.Write("&nbsp");
        }
        catch (Exception ex)
        {
            Response.Write("<script> alert(\'" + ex.Message + "\');</script>");
        }
    }
}

⌨️ 快捷键说明

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