首页 > 编程 > .NET > 正文

[ASP.NET开发系列]在用户控件中添加属性

2024-07-10 13:12:12
字体:
来源:转载
供稿:网友

在中经常有一些代码是在很多地方重复出现的,象导航栏、用户登录/注册和首页上面的一些固定栏目等。这些可重用的代码我们可以把它写成一个通用模块供需要的地方来引用,这样做即节省了开发时间还方便以后的维护。

在asp.net的web编程中提供了一种叫做“用户控件”可以帮助我们完成这种做法,其文件扩展名是“.ascx”,由于ascx文件是用来插入aspx页面中使用的,而一个aspx窗体只能包含一个<form>标志,所以ascx用户控件不能包含<form></form>标志。

下面使用一个经典入门范例来创建一个简单的用户控件,文件名为hello.ascx:

<html>

<body>

 <h1>经典入门范例</h1>

 <hr>

 <h3>hello word</h3>

</body>

</html>

把这段代码保存为hello.ascx文件,然后在aspx页面上调用,具体调用如下:

hello.aspx

<%@register tagprefix=”wen” tagname=”hello” src=”hello.ascx”%>

<html>

<body>

  <form id=frm runat=server>

   <wen:hello id=myhello runat=server>

  </form>

</body>

</html>

 在ie浏览器的地址里输入 http://localhost/hello.aspx运行,将在页面上打印出字符串“hello word”。

代码说明:1)指令@register定义了用户控件文件的标签名“hello”和标签前缀名”wen”;

         2)src属性是连接到用户控件的相关的文件名;

         3)<wen:hello id=myhello runat=server>这一句是在aspx窗体中调用用户控件hello.ascx的语句。

以上的演示代码没有给控件添加属性,下面我们举一个用户登录的文件,把它写成用户控件,在向其中添加username和password这两个属性。向用户控件添加属性很简单,只要在ascx文件中的<script></script>块中定义就行了。

userlogin.ascx

<html>

<title>用户登录</title>

<body>

  <table>

    <tr>

      <td>用户名:</td>

      <td><asp:textbox id=”txt1” runat=”server”></td>

    </tr>

<tr>

  <td>密  码:</td>

  <td><asp:textbox id=”txt2” textmode=”password” runat=”server”></td>

</tr>

<hr>

<tr>

  <td></td>

  <td><asp:linkbutton text=”登陆” runat=”server”></td>

</tr>

</table>

</body>

</html>

<script language=”c#” runat=”server”>

 public string username{

   get{return txt1.text;}

   set{txt1.text=value;}

}

 public string password{

   get{return txt2.text;}

   set{txt2.text=value;}

}

</script>

至此,我们已经给userlogin.ascx文件添加了username和password这两个属性了,以下demo演示如何在aspx页面上引用这两个属性。

userlogin.aspx

<%@register tagprefix=”wen” tagname=”userlogincontorl” src=” userlogin.ascx” %>

<html>

<title>引用属性</title>

<body>

  <form runat=”server”>

    <wen: userlogin.ascx  id=”mylogin” runat=”server”>

  </form>

  用户名:<asp:label id=”lab1”  runat=”server”><br>

  密  码:<asp:label id=”lab2”  runat=”server”><br>

</body>

</html>

<script language=”c#” runat=”server”>

void page_load(object sender,eventargs e){

  if(ispostback){

    lab1.text=mylogin.username;

    lab2.text=mylogin.password;

}

}

</script>


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表