在我们将程序部署在服务器上时,如果服务器上同时存在.net framework1.1和 .net framework2.0就容易出现错误:
Server Application Unavailable
The web application you are attempting to access on this web server is currently unavailable. Please hit the "Refresh" button in your web browser to retry your request.
这个的一种可能的因素就是站点上使用的连接程序池不明确,或者是默认的为1.1的,或者是2.0和1.1的程序共用应用程序池,解决的办法就是将1.1和2.0的应用程序池分开,或者为自己的网站建立单独的应用程序池,这样最保险了。
