如何解决 ASP.NET 网站中的构建错误
我的 .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 "
What would be the reason.Is that environment specific problem.I am using VS 2008.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以前遇到过类似的问题,通常是由于设计器在向页面添加新控件后未更新而引起的。要解决此问题,我建议
离开页面。
页。
再次翻页并保存。
认为现在应该可以了。
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
out of the page.
page.
page again and save.
think it should work now.