注册登录
使用帮助
平台使用帮助文档及升级公告。

发表评论eAction动作类

发布时间:2017-08-06 16:54:41 浏览量:1164

eAction动作处理类

属性 数据类型 描述
ActionName string 动作参数名称
Value string
Actioning   动作事件
Listen()   开始监听事件

使用示例

public eAction action;
protected void Page_Load(object sender, EventArgs e)
{
action
= new eAction();
action.Actioning
+= action_Actioning;
action.Listen();
}

protected
void action_Actioning(string Action)
{
Response.Write(Action);
}
网友评论
暂时还没有评论!
登录后评论