ウェブページを作っています。ここでの目標は、ドロップダウン リストから選択したときにファイルを開くことです。これが私が今持っているトラブルコードです:
<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!
}
何らかの理由で、ドロップダウン リストで何かを選択しても、その機能がトリガーされることはありません。説明してください。