You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
995 B
Plaintext

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Collections.Generic;
using System.Data;
using System.Web;
using BP.En;
using BP.Sys;
namespace CCFlow.WF.Comm
{
/// <summary>
/// 实例说明:
/// 1.Handler.ashx.cs只需继承BP.WF.HttpHandler.HttpHandlerBase类实现CtrlType属性返回此“Handler业务处理类”的Type
/// 2.“Handler业务处理类”必须继承自BP.WF.HttpHandler.WebControlBase类必须声明含有1个HttpContext类型参数的构造函数
/// 3.“Handler业务处理类”中编写JS端要调用的业务逻辑方法JS调用此方法时传递DoType=该业务逻辑方法名即可;
/// </summary>
public class Handler : BP.WF.HttpHandler.HttpHandlerBase
{
/// <summary>
/// 获取 “Handler业务处理类”的Type
/// </summary>
public override Type CtrlType
{
get
{
return typeof(BP.WF.HttpHandler.WF_Comm);
}
}
}
}