bippopuppage.cs
来自「DocFlow展示了使用.NET开发平台结合Microsoft SQL Serv」· CS 代码 · 共 35 行
CS
35 行
/*
* Copyright (c) 2002 FulcrumWeb. All rights reserved.
*/
using System;
namespace Bip.WebControls
{
/// <summary>
/// Summary description for BipPopupPage.
/// </summary>
public class BipPopupPage : BipPage
{
public BipPopupPage()
{
}
private void Page_Load(object sender, System.EventArgs e)
{
}
override protected void OnInit(EventArgs e)
{
base.OnInit(e);
this.Load += new System.EventHandler(this.Page_Load);
}
protected override string GetErrorPage()
{
return "~/ErrorPopupPage.aspx";
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?