在《在用戶控件中添加屬性》這一篇文章中我們演示了如何在用戶控件中添加屬性
在《在用戶控件中添加屬性》這一篇文章中我們定義了一個用戶登錄的用戶控件UserLogin
我們現在通過以下的例子來說明如何在UserLogin
UserLogin
<html>
<title>用戶登錄</title>
<body>
<table>
<tr>
<td>用戶名
<td><asp:TextBox ID=
</tr>
<tr>
<td>密 碼
<td><asp:TextBox ID=
</tr>
<hr>
<tr>
<td></td>
<td><asp:LinkButton Text=
</tr>
</table>
</body>
</html>
<script language=
public string UserName{
get{return txt
set{txt
}
public string PassWord{
get{return txt
set{txt
}
public event Eventhandler Login; //添加事件句柄
void MyOnClick(Object Sender
if(Login != null)
Login(this
</script>
在ASPX頁面中使用自定義事件
<%@Register TagPrefix=
<html>
<body>
<form runat=server>
<wen:UserEvent ID=
</form>
<asp:Label ID=
<asp:Label ID=
</body>
</html>
<script Language=
void OnLoginPress(Object Render
Lab
Lab
}
</script>
說明
From:http://tw.wingwit.com/Article/program/ASP/201311/21844.html