GITLAB

NetMix / questionnaire-investigation

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
master
  • questionnaire-investigation
  • EduResearch
  • src
  • Quiz.WebSite
  • Common
  • Error.aspx.cs
  • 149f15b6   first commit Browse Code »
    杨甜甜
    5 years ago  
Error.aspx.cs 274 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
using System;

namespace Quiz.WebSite.Common
{
    public partial class Error : System.Web.UI.Page
    {
        protected string errmsg = "";
        protected void Page_Load(object sender, EventArgs e)
        {
            errmsg = Request["errmsg"];
        }
    }
}