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

📄 imageeditor_showimage.aspx

📁 1.把"Web"文件夹内的文件拷贝到某个文件夹 2.在IIS中新建站点
💻 ASPX
字号:
<%@ Page Language="C#" %> 
<%@import Namespace="CuteEditor.ImageEditor"%>

<META Http-Equiv="Cache-Control" Content="no-cache">
<META Http-Equiv="Pragma" Content="no-cache">
<META HTTP-EQUIV="EXPIRES" CONTENT="0"> 

<Script runat = "server">

void Page_Load(object sender, System.EventArgs e)
{
	string filepath = this.Page.Request.QueryString.Get("filepath");
	if (filepath != "")
	{
		filepath=this.Context.Server.MapPath(filepath);
	}
	string drawid = this.Page.Request.QueryString.Get("drawid");
	string action = this.Page.Request.QueryString.Get("action");
	string parameters = this.Page.Request.QueryString.Get("parameters");
	string gid = this.Page.Request.QueryString.Get("gid");
    DrawShow dw = new DrawShow(drawid, filepath, action, parameters, gid);
}
</Script>

⌨️ 快捷键说明

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