网站正在正常构建,但在发布期间无法构建
我在 ASP.NET 中开发了一个用户控件,并使用 LoadControl 将该控件动态添加到页面。当我想读取用户控件数据(属性)时,我将页面控件转换为其类型,如下所示:
((ASP.ucMultiSelectCallback)crtl)
网站正在构建并正常工作,但是当我想发布网站时,在其自动构建操作期间,它面临以下错误:我提到的代码。错误是
" 类型或命名空间不存在,是否缺少程序集 参考“
我该怎么办?
I have developed a usercontrol in ASP.NET and used LoadControl to dynamically add the control to a page. When I want to read the usercontrol data (properties) I cast page control to its type like this:
((ASP.ucMultiSelectCallback)crtl)
The website is building and working correctly but when I want to Publish the website , during its automatic build action, it faces error on the line of code I mentioned. The Error is
" the type or namespace does not exist ,are you missing an assembly
reference "
what should I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您在编译代码中遇到了问题。确保当您测试应用程序时它使用“发布”模式,因为我认为您发布和发布模式。
I think you have a probmel in compiled code. Be sure that when you test application it uses "Release" mode, because I think you publish and release mode.