首页 > 编程 > .NET > 正文

ASP.NET创建服务器控件示例代码

2024-07-10 13:12:50
字体:
来源:转载
供稿:网友
创作您自己的 asp.net 服务器控件很容易。创建简单的自定义控件时,您所要做的只是定义从 system.web.ui.control 派生的类并重写它的 render 方法。render 方法采用 system.web.ui.htmltextwriter 类型的参数。控件要发送到客户端的 html 作为字符串参数传递到 htmltextwriter 的 write 方法。
例如:
服务器控件代码(简单显示字符串):simple.cs:

以下是simple.cs:
imports system 
imports system.web 
imports system.web.ui 
namespace simplecontrolsamples 
public class simplecsharp
{
    
    protected override void render(htmltextwriter output)
    {
      response.write("<h2>欢迎来到asp.net源码下载专业站<h2>");
    }
}

引用文件simple.aspx:

以下是simple.aspx:
<%@ register tagprefix="simplecontrolsamples" namespace="simplecontrolsamples" assembly="simplecontrolsamplescsharp" %> 
<html> 
<body> 
<form method="post" action="simple.aspx" runat=server> 
<simplecontrolsamples:simplecsharp id="mycontrol" runat=server/> 
</form> 
</body> 
</html> 

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