——此文章摘自《ASP
NET網絡數據庫開發實例精解》定價
¥
特價
¥
詳細>>
http://track
linktech
cn/?m_id=dangdang&a_id=A
&l=
&l_type
=
width=
height=
border=
nosave>
用戶控件是ASPNET中很重要的一部分使用它可以提高程序代碼的重用性即一個用戶控件在網頁用戶控件或控件的內部都可以再次使用本實例介紹用戶登錄的用戶控件也可以在網站的任何地方再次使用
本實例介紹如何在ASPNET中創建用戶控件如何使用用戶控件以及如何在用戶控件中定義公開屬性的實現方法
.創建新ASPNET應用程序
在Visual Studio NET 集成開發環境中創建新的ASPNET Web應用程序命名為Example__
.創建用戶登錄用戶控件MyUserControlascx
在應用程序Example__中添加個用戶控件它的名稱為MyUserControlascx並在用戶控件上添加個TextBox控件和個Button控件它們的名稱分別為tUserNametPasswordUserLoginBtn 和CancelBtn
控件tUserName和tPassword分別用來輸入用戶名稱和用戶密碼控件UserLoginBtn和CancelBtn實現用戶登錄功能和取消登錄功能用戶登錄用戶控件MyUserControlascx的設計界面如圖所示
http://developcsaicn/dotnet_ASP/images/gif>
圖 用戶控件MyUserControlascx的設計界面
用戶控件MyUserControlascx的HTML設計代碼如下
<%@ Control Language=c# AutoEventWireup=false
Codebehind=MyUserControlascxcs Inherits=
Example__MyUserControl
TargetSchema=http://schemasmicrosoftcom/intellisense/ie%>
<td colspan=>用戶登錄用戶控件</td>
<td width= align=right>用戶名稱</td>
<asp:TextBox id=tUserName runat=server width=></asp:TextBox>
<td width= align=right>用戶密碼</td>
<asp:TextBox id=tPassword runat=server width=
TextMode=Password></asp:TextBox>
<asp:Button id=UserLoginBtn runat=server Text=確 定></asp:Button>
<asp:Button id=CancelBtn runat=server Text=取 消></asp:Button>
.設置用戶登錄用戶控件MyUserControlascx的事件和函數
在應用程序Example__中添加用戶控件的屬性UserName和Password分別表示用戶控件中控件UserName和控件Password的屬性Text的值屬性UserName和屬性Password的程序代碼如下
right>[] [http://developcsaicn/dotnet_ASP/htm>] [http://developcsaicn/dotnet_ASP/htm>]
From:http://tw.wingwit.com/Article/program/net/201311/15336.html