将我的 ASP.NET 应用程序移至 Windows 2008 服务器,现在 DropDownList SelectedIndexChanged 事件不会触发

发布于 2024-11-05 09:43:55 字数 570 浏览 2 评论 0原文

现有的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

时光沙漏 2024-11-12 09:43:55

一些想法:

  1. 虽然这看起来不太可能,但您是否缺少 IIS header 强制 IE8 在兼容模式下运行?
  2. 您是否安装了 ASP.NET v2.0(我不记得是否预装了)?请务必仔细检查,因为某些库将随 ASP.NET v3.5 一起提供,但我不认为这会为您提供一切。
  3. 运行应用程序的 IIS 用户是否拥有必要的安全权限?如果您不确定,您可能需要使用 -ga 选项运行 aspnet_regiis(如果您第二次运行它,这不会造成任何损害)。

A few ideas:

  1. Though this seems like a long shot, are you missing an IIS header that is forcing IE8 to run in compatibility mode?
  2. Have you installed ASP.NET v2.0 (I can't remember if this is pre-installed or not)? Make sure you check carefully as some of the libraries will come with ASP.NET v3.5 but I don't believe that gives you everything.
  3. Does the user running the app is IIS have the necessary security rights? You might want to run aspnet_regiis with the -ga option if you aren't sure (this won't hurt anything if you run it a second time).
美胚控场 2024-11-12 09:43:55

这是一个内联网应用程序。将站点添加到 IE 中本地 Intranet 的受信任站点。

This is an intranet app. Added the site to the trusted sites for the Local Intranet in IE.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文