将网站转换为网络应用程序(用户控件)
我正在 asp.net 中开发一个网站,现在我需要将其转换为网络应用程序。
我使用新的 Web 应用程序模板创建了一个新项目并复制了文件。我在解决方案中右键单击并转换为 Web 应用程序,效果很好,vs2010 为每个 Web 表单创建了一个 design.vb 文件,效果很好。
但是,有一些 Web 表单使用某些用户控件,并且此用户控件不会在 design.vb 中创建声明。我想知道是否有任何方法可以将 webform 中的声明修复到我的设计文件以在代码隐藏中使用???
谢谢
I'm developing a website in asp.net and now I need to convert it to a webapplication.
I created a new project with a new webapplication template and copy me files. I did a right click in the sollution and convert to webapplication and it worked fine, the vs2010 has created a design.vb files for each webform and it's good.
But, there are some webforms that uses some user controls and this user control doesn't created the declation in design.vb. I'd like to know if is there any way to fix the declations in webform to a my desing file to be used in code-behine ???
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以右键单击每个用户控件并单独选择
转换为 Web 应用程序
(或类似的选项)以生成设计器文件。You can right click on each user control and select
Convert To Web Application
(or something like that) individually to generate the designer files.通过VS没有简单的方法可以做到这一点。您也可以尝试ReSharper 的调整命名空间功能。
There is no easy way to do this through VS. You can alternatively try ReSharper's Adjust Namespace functionality.