科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道应用软件asp.net2.0中不同web控件之间的相互调用

asp.net2.0中不同web控件之间的相互调用

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

本文用举例的方式说明在asp.net 2.0中,如何实现在不同的web控件之间互相调用。

作者:网页教学网  来源:网页教学网  2007年9月2日

关键字: ASP.NET web 控件 调用

  • 评论
  • 分享微博
  • 分享邮件

在本页阅读全文(共19页)

在asp.net 2.0中,要在不同的web控件之间互相调用,必须要<%@ reference virtualpath="另一控件名称">来引用,举例如下:

default.aspx:

<form id="form1" runat="server">

<uc1:webusercontrol id="webusercontrol1" runat="server">

</uc1:webusercontrol>

<uc2:webusercontrol2 id="webusercontrol2_1" runat="server" />

</form>

我们要实现的是,按下控件1的按钮后,将在控件2的文本框中显示出指定的文本

在首页里,分别调用了控件1和控件2:

webcontrol.ascx:

<%@ control language="c#" autoeventwireup="true" codefile="webusercontrol.ascx.cs"

inherits="webusercontrol" %>

<%@ reference virtualpath="~/webusercontrol2.ascx" %>

<asp:button id="button1" runat="server" onclick="button1_click" text="button" />

这里放置一个按钮,然后用reference来引用控件2:

webcontrol.ascx.cs:

protected void button1_click(object sender, eventargs e)

{

webusercontrol2 w = page.findcontrol("webusercontrol2_1") as webusercontrol2;

w.text = "hello all!";

}

对于控件2:

<%@ control language="c#" autoeventwireup="true" codefile="webusercontrol2.ascx.cs"

inherits="webusercontrol2" %>

<asp:textbox id="textbox1" runat="server"></asp:textbox>

控件2的codebehind代码:

public partial class webusercontrol2 : system.web.ui.usercontrol

{

protected void page_load(object sender, eventargs e)

{

}

public string text

{

set { textbox1.text = value; }

}

}

 

查看本文来源

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章