如何解决 ASP.NET 网站中的构建错误

发布于 2024-10-15 02:29:36 字数 325 浏览 0 评论 0原文

我的 .net 应用程序的 aspx 页面上有一个文本框控件。

在页面加载事件后面的代码中我写道:

txt.Text = "Sample"

现在,如果在系统 [ windows XP ] 上构建网站,它会正确构建,但在系统 [ Windows 7 Enterprise ] 上,它显示以下错误:

“名称'txt'未声明”

在此处输入图像描述

原因是什么。是环境特定问题吗。我使用的是 VS 2008。

I have one text box control on aspx page in my .net application.

and in code behind on page load event i wrote:

txt.Text = "Sample"

Now if build website on system [ windows XP ] it build properly but on system [ Windows 7 Enterprise ] it showing following error:

" Name 'txt' is not declared "

enter image description here

What would be the reason.Is that environment specific problem.I am using VS 2008.

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

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

发布评论

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

评论(1

听,心雨的声音 2024-10-22 02:29:36

以前遇到过类似的问题,通常是由于设计器在向页面添加新控件后未更新而引起的。要解决此问题,我建议

  1. 使用 id 为 txt 的文本框
    离开页面。
  2. 然后保存
    页。
  3. 现在关闭 aspx 页面。
  4. 再次重新打开 aspx,
  5. 将带有 id txt 的文本框控件放回到
    再次翻页并保存。

认为现在应该可以了。

had issues similar to this before, usually caused by the designer not updating after adding new control to the page. to fix i would recommend

  1. taking the textbox with id of txt
    out of the page.
  2. then save the
    page.
  3. now close the aspx page.
  4. re open the aspx again
  5. place textbox control with id txt back onto the
    page again and save.

think it should work now.

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