- Replace CETC54 references with ETMS - Replace com.cetc54 package with com.example - Rename cetc54 directories to etms - Replace CECT54.WebUI to ETMS.WebUI - Replace organization names (中国电科54所 -> XX公司) - Replace internal system URLs (cetc54.com -> example.com)
40 lines
1.0 KiB
Plaintext
40 lines
1.0 KiB
Plaintext
<%@ WebHandler Language="C#" Class="getContent" %>
|
|
/**
|
|
* Created by visual studio 2010
|
|
* User: xuheng
|
|
* Date: 12-3-6
|
|
* Time: 下午21:23
|
|
* To get the value of editor and output the value .
|
|
*/
|
|
using System;
|
|
using System.Web;
|
|
|
|
public class getContent : IHttpHandler {
|
|
|
|
public void ProcessRequest (HttpContext context) {
|
|
context.Response.ContentType = "text/html";
|
|
|
|
//获取数据
|
|
string content = context.Request.Form["myEditor"];
|
|
|
|
|
|
//存入数据库或者其他操作
|
|
//-------------
|
|
|
|
//显示
|
|
|
|
|
|
context.Response.Write("<script src='../third-party/jquery.min.js'></script>");
|
|
context.Response.Write("<script src='../third-party/mathquill/mathquill.min.js'></script>");
|
|
context.Response.Write("<link rel='stylesheet' href='../third-party/mathquill/mathquill.css'/>");
|
|
context.Response.Write("<div class='content'>" + content + "</div>");
|
|
|
|
}
|
|
|
|
public bool IsReusable {
|
|
get {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
} |