比如textA.aspx
<%@ Page language="c#" Codebehind="Simple.aspx.cs" AutoEventWireup="false" Inherits="SimpleControlSamples.Simple2" %>
<%@ Register TagPrefix="Module" TagName="View" Src="viewModule.ascx" %>
<HTML>
<body>
 <form id="Form1" action="Composition3.aspx" method="post" runat="server">
  <MODULE:VIEW id="viewe" runat="server"></MODULE:VIEW>
 </form>
</body>
</HTML>web 用户控件 viewModule.ascx
<asp:TextBox id="tb2" runat="server"></asp:TextBox>那我怎样在textA.aspx里取得viewModule.ascx里的tb2的值???