我正在做一个网页。这里的目标是在您从下拉列表中选择文件时打开文件。这是我现在遇到的问题代码:
<asp:DropDownList ID="dropdownFiles" runat="server" Height="18px" onselectedindexchanged="File_Opener" Width="380px">
<asp:ListItem>Please choose a file...</asp:ListItem>
</asp:DropDownList>
看到“onselectedindexchanged”部分了吗?那么在代码隐藏中,我有以下功能:
public void File_Opener(object sender, EventArgs e)
{
//here's where I would open the files, but it never even hits this function!
}
出于某种原因,在下拉列表中选择某些内容甚至不会触发该功能。请解释。