【C#学习笔记】网页弹出提示框

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace WebApplication1
{
    public partial class WebForm1 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }

        protected void Button1_Click(object sender, EventArgs e)
        {
            Response.Write("");
        }
    }
}

 

转载于:https://www.cnblogs.com/tiandsp/p/7440493.html

你可能感兴趣的:(【C#学习笔记】网页弹出提示框)