Asp.net网站发布
如果我的服务器上的每个页面都有一个单独的 dll 并且工作正常。如果我对特定页面(例如 xyz.aspx 页面)的文件隐藏代码进行一些更改。 然后我必须上传该特定页面的 dll。这会刷新整个 Web 应用程序,并且应用程序中的所有会话和其他值都会受到干扰。 有没有什么方法可以上传 xyz.dll(页面 xyz.apsx)刷新 xyz.aspx 并且不会干扰整个 Web 应用程序。
if i have a separate dll for each page on my server and that is working fine. if I make some changes in code behind file of a particular page say, xyz.aspx page.
then I have to upload the dll of that particular page. and that refreshes the whole web application and all sessions and other values got disturbed in the application.
Is there any way that uploading the xyz.dll (of page xyz.apsx) on refreshes the xyz.aspx and didn't disturb the whole web application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,将新程序集放入 vdir 将导致发生回收。
这个问题...
是什么导致 IIS 中的应用程序池回收?
...谈论导致应用程序池回收的原因。这篇 MSDN 文章...
http://blogs.msdn.com/b/tess/archive/2006/08/02/asp-net-case-study-lost-session-variables-and- appdomain-recycles.aspx
...有一篇关于该主题的精彩文章。
如您所见,此刷新是设计使然。
By default, dropping new assemblies into the vdir is going to cause a recycle to occur.
This question...
What causes an application pool in IIS to recycle?
... talks about what causes an app pool recycle. This MSDN article...
http://blogs.msdn.com/b/tess/archive/2006/08/02/asp-net-case-study-lost-session-variables-and-appdomain-recycles.aspx
... has an excellent write up about the subject.
As you can see, this refresh is by design.