上一篇文章介绍了实现自定义服务器控件事件的基本概念。本文将通过典型示例讲解捕获回传事件的实现方法。
1. 实现捕获回传事件
如果服务器控件需要捕获来自客户端的回传事件,并想为该回传事件自定义服务器端事件处理逻辑,那么控件必须实现System.Web.UI.IPostBackEventHandler接口。下面列举了该接口定义。
\n
public interface IPostBackEventHandler
{
void RaisePostBackEvent(string eventArgument);
}\n
{
void RaisePostBackEvent(string eventArgument);
}\n