Files
17168ERP/web/ext/editor_templates/extlist.json.aspx.cs
2025-08-29 01:27:25 +08:00

23 lines
587 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using MyWeb;
public partial class ext_editor_templates_extlist_json : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
//載入清單
editorTemplates editors = new editorTemplates();
Response.ContentType = "application/json";
Response.Write(editors.getJson(Request["kind"]));
}
}
}