是否可以将 ascx 控件隔离在单独的项目中?
是否可以将 ascx 控件隔离在单独的项目中?我尝试创建一个项目“类库”,但无法添加 ascx 组件。
Is it possible to isolate an ascx controls in a separate project? I tried to create a project 'class library' and I can not add ascx component.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。
您可以在其他项目(Web应用程序)中生成所有内容,但是当您使用ascx时,您必须引用您的ascx项目,并且您还需要将所有ascx文件复制到您想要使用它的项目中的适当位置。
您还可以使用 ClassLibrary,但是您需要手动创建 .ascx 文件和代码隐藏文件,并且在使用它时您还必须将 ascx 文件复制到主项目中。
Yes it is.
You can produce all stuff in the other project(web application), but when You are using ascx You have to make reference to Your ascx project and also You need to copy all ascx files into proper place in project where You want use it.
You can also use ClassLibrary, but then You need to create .ascx files and codebehind files manually and when using it You have to also copy ascx files into main project.
是的,你可以这样做。
创建一个网站项目。并使用 Web-Deployment-Projects 部署发布版本,这将为您的网站项目生成单个程序集输出。
将 ascx 前端文件复制到要使用原始库项目的客户端 ascx 前端文件,并将代码隐藏文件指向程序集中的类。
Yes, you can do this.
Create a website project. and deploy the release-build using Web-Deployment-Projects that will produce single assembly output for your website project.
Copy the ascx front-end files in your client asp.net project where you want to use consume the original library project and point the code-behind files to the classes in the assembly.