G
Guest
I have an ASP.NET page with a form that contains two user controls:
<%@ Register TagPrefix="x" TagName="c1" Src="ctl1.ascx" %>
<%@ Register TagPrefix="x" TagName="c2" Src="ctl2.ascx" %>
<body>
<form runat="Server">
<x:c1 id="con1" runat="Server">
<x:c2 id="con2" runat="Server">
<form>
</body>
In one control (con1) I have a dropdownlist. In the other control (con2), I
have a set of textboxes that I would like to pre-populate with values that
depend on what items is selected in the dropdownlist in the first control.
How does the code for con2 access the value of the dropdownlist in con1?
Thanks for any help or suggestions.
<%@ Register TagPrefix="x" TagName="c1" Src="ctl1.ascx" %>
<%@ Register TagPrefix="x" TagName="c2" Src="ctl2.ascx" %>
<body>
<form runat="Server">
<x:c1 id="con1" runat="Server">
<x:c2 id="con2" runat="Server">
<form>
</body>
In one control (con1) I have a dropdownlist. In the other control (con2), I
have a set of textboxes that I would like to pre-populate with values that
depend on what items is selected in the dropdownlist in the first control.
How does the code for con2 access the value of the dropdownlist in con1?
Thanks for any help or suggestions.