33 lines
4.0 KiB
Plaintext
33 lines
4.0 KiB
Plaintext
<%@ Page Language="C#" %>
|
|
<%@import Namespace="CuteEditor.ImageEditor"%>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head runat="server" ID="Head1">
|
|
<title>[[ImageEditor]]
|
|
|
|
|
|
</title>
|
|
<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>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
</body>
|
|
</html> |