所以在 ASP.NET 中,我只需这样做:
<asp:ListBox OnSelectedIndexChanged="UpdateModels" runat="server" > </asp:ListBox>
但我的列表框位于 .ascx 文件中。像这样注册并包含在我的实际网页 massupdate.aspx 中
<%@ Register TagPrefix="mass" TagName="make" Src="~/DynamicData/Make.ascx" %>
<mass:make id="makeControl" runat="server"/>
在我的 make.ascx.cs 我有这个
public ListBox getlistbox()
{
return DropDownList1;
}
所以我可以访问原始列表框,但我不知道如何在 mass.update.aspx 的代码隐藏中复制 C# 中的第一个代码片段。