首次推送

This commit is contained in:
lym
2026-03-09 00:13:46 +08:00
commit b19613bb31
13974 changed files with 2767735 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
<%@ WebHandler Language="C#" Class="Mtxfw.VipSite.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;
namespace Mtxfw.VipSite
{
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;
}
}
}
}