易截截图软件、单文件、免安装、纯绿色、仅160KB

asp.net如何重启网站? - .NET技术 / ASP.NET

我用的是Godaddy的服务,使用
C# code:
HttpRuntime.UnloadAppDomain();

来重启程序会抛出异常,应该是权限不够,请教大家还有没有其他的办法?
using System.ServiceProcess;

  public void ResetAspNetService()
  {
  ServiceController sc = new ServiceController("aspnet_state");
  if (sc.Status == ServiceControllerStatus.Running)
  {
  sc.Stop();
  sc.WaitForStatus(ServiceControllerStatus.Stopped); //等待服务停止
  if (sc.Status == ServiceControllerStatus.Stopped)
  {
  sc.Start();
  }
  }
  else
  {
  sc.Start();
  }
  }


注意添加引用:system.serviceprocess.dll

引用

using System.ServiceProcess;

public void ResetAspNetService()
{
ServiceController sc = new ServiceController("aspnet_state");
if (sc.Status == ServiceCon……

支持

学习一把。。。。

引用
using System.Serv


相关问答:

在asp.net里面脚本出错 - .NET技术 / ASP.NET

function CheckOpwd(){//验证用户名
var pwd=document.all.txtOpwd;

var div1=document.getElementById("divPwd");

if (pwd.value=="")
{
......

asp初学问题 - Web 开发 / ASP

Microsoft JET Database Engine '80040e07' 
标准表达式中数据类型不匹配。 
\wwwroot\update.asp, line 20
--------------------------------------------------------------------------------
Ho ......

ASP.NET相关技术 - .NET技术 / ASP.NET

各位大侠,我学习的是ASP.NET,想知道相关技术有哪些,就像JAVA EE中有struct sping jsp severlet 等,ASP.NET还有哪些些相关技术。
http://topic.csdn.net/u/20090914/21/af27de99-f0f3-4cfd-9379-13764f8ec6b1.ht ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号