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虚拟主机实现伪静态的方法: 1、 重写url参数 Step1: 建立前台文件index.asp,修改url参数形式。由于读取数据库中的记录不是专题的重点,故直接给出: <!--#include file="config.asp" --> &l ......
C# code: SqlConnection conn = CsDB.sqlcon(); SqlDataAdapter da = new SqlDataAdapter("select fwCoding from bjmuma_fwCoding where OrderNumber='" + Order + & ......
asp.net批量上传图片最好有源码,在线等!!!!!!! 源码很长的。 参考 C# code: HttpFileCollection files = HttpContext.Current.Request.Files; if (files.Count <= 1) { ......
就是一个按钮,点击之后打开对话框,然后选取图片。就这样上传。。 怎么实现。在网上搜到那么多的代码,全是很多的那种,不知道,看不下去。 所以在这里想请大哥大姐帮帮忙。 使用自带的fileupload控件可以实现 ......