1
同一頁
上的另一個用戶控件我是新來的用戶控件加載下降一個用戶控制下來, 我有我無法解決像下面從
當在用戶控制1按鈕按下的情況在同一頁面上的用戶控件2中綁定一個下拉列表。和用戶控件都在他們自己的更新面板中。
的UserControl1 ASCX:
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="WebUserControl1.ascx.cs" Inherits="SampleWebApp.WebUserControl1" %>
<asp:DropDownList ID="DropDownList1" runat="server"></asp:DropDownList>
UserControl2 ASCX:
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="WebUserControl2.ascx.cs" Inherits="SampleWebApp.WebUserControl2" %>
<asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
以上兩個用戶控件是一個aspx頁面像下面 ASPX
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<div>
<UC2:UserControl1 ID="UserControl1" runat="server" />
</div>
</ContentTemplate>
</asp:UpdatePanel>
<asp:UpdatePanel ID="UpdatePanel2" runat="server">
<ContentTemplate>
<div>
<UC2:UserControl2 ID="usercontrol2" runat="server" />
</div>
</ContentTemplate>
</asp:UpdatePanel>
現在最大的問題是 時我點擊用戶控件2中的按鈕,然後下載lis噸的用戶控制1 shud b勢必 請幫
在此先感謝