快速业务通道

asp.net 2.0中不同web控件之间的相互调用

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-05-21

在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; }
  }
}

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号