如何使用 Javascript 呈现页面详细信息

发布于 2024-12-04 23:13:04 字数 326 浏览 0 评论 0原文

我正在将现有应用程序从 .NET 3.5 转换为 .NET 4。在该过程中,我没有在 VS2010 中进行编译,而是将应用程序的 IIS 配置更改为 4.0 框架。 现在的问题是我们使用 Javascript 将页面详细信息呈现为对象。例如,我们的页面名称为 Search.aspx,因此我们使用 document.Search.textbox1.value 来获取文本框值。在这里,搜索充当一个包含所有项目的对象。但是当我在 4.0 Framework 中运行时,我在文档中收到错误。Search 说它未定义。谁能告诉我3.5和4.0框架之间有什么大的变化吗?因为当我在 3.5 中运行相同的应用程序时,它工作得很好。请提出一些建议。

I am converting my existing application from .NET 3.5 to .NET 4. in that process instead of compiling in VS2010 i just changed the IIS config of my application point to 4.0 framework.
Now the issue is we are using Javascript to render the page details as Objects. example we have page name Search.aspx so we use document.Search.textbox1.value to get the text box value. Here Search acts a object which contains all the items. But when i run in 4.0 Framework i getting error in the document.Search saying it is undefined. Can anyone tell me is there any big change between 3.5 and 4.0 framework. Because when i run the same application in 3.5 it works fine. Pls suggest some inputs.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

悟红尘 2024-12-11 23:13:04

控件 ID 的呈现在 .NET 3.5 和 .NET 4.0 中有所不同。这会产生问题。

迁移问题

如果您使用 Visual Studio 2010 从 ASP 升级应用程序。 NET 2.0 或 ASP.NET 3.5,该工具会自动向 Web.config 文件添加一个设置,以保留早期版本 .NET Framework 的行为。但是,如果通过更改 IIS 中的应用程序池以面向 .NET Framework 4 来升级应用程序,则 ASP.NET 默认情况下会使用新模式。要禁用新客户端 ID 模式,请将以下设置添加到 Web.config 文件:

<pages ClientIDMode="AutoID" / >

The rendering of the control id's are different in .NET 3.5 and .NET 4.0. This would create problems.

Migration Issues

If you use Visual Studio 2010 to upgrade your application from ASP.NET 2.0 or ASP.NET 3.5, the tool automatically adds a setting to the Web.config file that preserves the behavior of earlier versions of the .NET Framework. However, if you upgrade an application by changing the application pool in IIS to target the .NET Framework 4, ASP.NET uses the new mode by default. To disable the new client ID mode, add the following setting to the Web.config file:

<pages ClientIDMode="AutoID" / >
蒗幽 2024-12-11 23:13:04

谢谢我得到了输出。您的帖子中的一个小更正。

c是小写字母,不是大写字母。即使在 msdn 中,他们也给出了大写字母 c。当我尝试在 VS2010 中编译时,我发现了这个。

Thanks i got the output. One small correction in your post.

c is small letter not caps. Even in msdn they have given the caps c. When i tried compiling in VS2010 i was able to found this.

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