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

📄 regect.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 Backtop_重点难点管理_Regect : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        this.Panel1.Visible = true;
        this.Panel2.Visible = false;
        this.Panel3.Visible = false;
        this.Panel4.Visible = false;

    }
   

    protected void Button1_Click1(object sender, EventArgs e)
    {
        if (this.RadioButton1.Checked)
        {
            this.Panel1.Visible = false;
            this.Panel2.Visible = true;
            this.Panel3.Visible = false;
            this.Panel4.Visible = false;
        }
    }
    protected void CustomValidator1_ServerValidate1(object source, ServerValidateEventArgs args)
    {
        string UserName = args.Value;
        //if (User.judge(UserName))
        //{ //存在
        //    args.IsValid = false;

        //}
        //else
        //{//不存在
        //    args.IsValid = true;
        //}
    }
    protected void Button2_Click(object sender, EventArgs e)
    {
        if (this.IsValid)
        {
            this.Panel1.Visible = false;
            this.Panel2.Visible = false;
            this.Panel3.Visible = true;
            this.Panel4.Visible = false;
        }
    }
    
    protected void Button3_Click1(object sender, EventArgs e)
    {
        this.Panel1.Visible = false;
        this.Panel2.Visible = false;
        this.Panel3.Visible = false;
        this.Panel4.Visible = true;
    }
}

⌨️ 快捷键说明

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