将我的 ASP.NET 应用程序移至 Windows 2008 服务器,现在 DropDownList SelectedIndexChanged 事件不会触发
现有的 ASP.NET 2.0 应用程序当前部署在 Windows Server 2003 计算机上。
测试将其移至新的 WS 2008 盒子。应用程序加载正常,其他行为似乎正常,但我没有从 DropDownLists 中获取 OnSelectedIndexChanged 事件。
我想我可以添加命令按钮并根据下拉列表中选择的项目在按钮单击事件中运行代码,但这似乎有点笨拙。
有什么想法吗?
编辑- 这些控件在窗体上是独立的。不是 datagrid/gridview 或任何其他容器控件的一部分。
<asp:DropDownList ID="ddlOCA" runat="Server" OnSelectedIndexChanged="ddlOCA_SelectedIndexChanged" AutoPostBack="true"></asp:DropDownList>
编辑2- 此 Windows 2008 服务器是 64 位,而我获取事件的另一台服务器是 32 位。
编辑3- 在 WS 2008 机器上,还有几个不再触发(折叠/展开)。叹。
Existing ASP.NET 2.0 app,currently deployed on a Windows Server 2003 machine.
Testing moving it to a new WS 2008 box. App loads fine, other behavior seems fine, but I'm not getting OnSelectedIndexChanged events from my DropDownLists.
I guess I could add command buttons and run the code in the button click event based on the Item selected in the dropdown but that seems kinda clunky.
Any thoughts?
EDIT-
The controls are stand-alone on the form. Not part of a datagrid/gridview or any other container control.
<asp:DropDownList ID="ddlOCA" runat="Server" OnSelectedIndexChanged="ddlOCA_SelectedIndexChanged" AutoPostBack="true"></asp:DropDownList>
EDIT 2 -
This Windows 2008 server is 64 bit, whereas the other server where I do get the events is 32 bit.
EDIT 3 -
On the WS 2008 machine, there are also several that no longer fire (collaps/expand). Sigh.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一些想法:
A few ideas:
这是一个内联网应用程序。将站点添加到 IE 中本地 Intranet 的受信任站点。
This is an intranet app. Added the site to the trusted sites for the Local Intranet in IE.