发布网站 + VS2008
我在VS2008上使用VB.NET创建了一个网站。当我完成它的工作后,我发布了它,然后将其部署到生产服务器上。
问题是,当我更改网站中的任何代码时,我需要再次重新发布它并从头开始重新部署所有项目。
是否有其他更快的方法来仅部署单个页面或单个用户控件。
我知道如果我创建了一个 Web 应用程序,那么所有代码都将生成到一个 dll 中,但我有一个网站。
I created a website using VB.NET on VS2008. When i finished working on it I published it and then deployed it on the production server.
The problem is that when I change any code in the website I need to republish it again and deploy all the items again from scratch.
Is there any other faster way to deploy only a single page or single user control.
I know that if I created a webapplication then all the code will be generated into one single dll, but I have a website.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在发布属性中,选中“使用固定命名和单页程序集”。
这样您就可以只更新已更新的页面/控件的一个已更改的 DLL 文件。
In the publish Properties, check "Use fixed naming and single page assemblies".
This would let you update only the one single changed DLL file of the page/control you have updated.