C# 调用VS自带程序WebDev.WebServer40.EXE 源代码

通过Process.Start启动,VS自带程序WebDev.WebServer40.EXE

在内网架设网站时,为安装IIS条件下用VS自带的小程序来测试效果非常不错!

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Net;
using System.Net.NetworkInformation;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WebServer
{
    public partial class FormApp : Form
    {
        public FormApp()
        {
            InitializeComponent();
        }

        private void btnStart_Click(object sender, EventArgs e)
        {
            string _AppRoot = this.txtAppRoot.Text;
            string _Port = this.txtPort.Text;
            string _WebPath = this.txtWebPath.Text;
            string _WebvPath = this.txtWebvPath.Text;
            try
            {
                //简单校验
                CheckBoolTxt(_AppRoot, _Port, _WebPath, _WebvPath);
                string arguments = string.Format("/port:{0} /path:{1} /vpath:{2}", _Port, _WebPath, _WebvPath);
                System.Diagnostics.Process.Start(_AppRoot, arguments);
                this.linkLabel1.Text = string.Format("http://localhost:{0}{1}", _Port, _WebvPath);
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "提示:");
            }
        }

        private void CheckBoolTxt(string _AppRoot, string _Port, string _WebPath, string _WebvPath)
        {
            if (!System.IO.File.Exists(_AppRoot))
            {
                throw new Exception("找不到指定程序!");
            }
            if (!System.Text.RegularExpressions.Regex.IsMatch(_Port, @"^(([1-6][0-5][0-5][0-3][0-5])|([1-9][0-9][0-9][0-9])|([1-9][0-9][0-9])|([1-9][0-9])|([1-9]))$"))  //^[1-6]?[\d]{0,4}$
            {
                throw new Exception("端口:1-65535之间未使用的端口号!");
            }
            if (!System.IO.Directory.Exists(_WebPath))
            {
                throw new Exception("物理路径不存在,请指定有效的目录!");
            }
            if (!_WebvPath.Contains("/"))
            {
                throw new Exception("虚拟目录必须以‘/‘开头!");
            }
            IPGlobalProperties ipProperties = IPGlobalProperties.GetIPGlobalProperties();
            IPEndPoint[] ipEndPoints = ipProperties.GetActiveTcpListeners();
            int counts = ipEndPoints.Count<IPEndPoint>(o => o.Port == int.Parse(_Port));
            if (counts > 0)
            {
                throw new Exception("端口已被占用!");
            }
        }

        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            System.Diagnostics.Process.Start(this.linkLabel1.Text);
        }
    }
}

时间: 2024-10-15 01:00:25

C# 调用VS自带程序WebDev.WebServer40.EXE 源代码的相关文章

ASP.NET程序运行出现WebDev.WebServer40.exe已停止工作解决方法

问题描述:在开发系统时候运行程序突然报出“WebDev.WebServer40.exe已停止工作”的错误,程序调试运行,发现程序在打开数据库时候报错,也就是Connection.Open()处. 但是发现程序连接本地数据库正常,连接内网服务器数据库会报错,但是Sqlserver是可以直接连接到内网服务器数据库,所以排除了程序问题和数据库远程设置问题. 解决方法:用管理员身份运行cmd,输入netsh winsock reset回车,重新启动电脑ok!,一定是管理员身份哦.

在开发系统时候运行程序突然报出“WebDev.WebServer40.exe已停止工作”的错误的解决办法

问题描述:在开发系统时候运行程序突然报出“WebDev.WebServer40.exe已停止工作”的错误,程序调试运行,发现程序在打开数据库时候报错,也就是Connection.Open()处. 但是发现程序连接本地数据库正常,连接内网服务器数据库会报错,但是Sqlserver是可以直接连接到内网服务器数据库,所以排除了程序问题和数据库远程设置问题. 解决方法:经过查找和试验,最后发现是的Winsock协议配置有问题,导致网络连接出现异常,有资料说是因为360安全卫士拦截网络访问通道导致的. 解

开发系统时候运行程序突然报出“WebDev.WebServer40.exe已停止工作”的错误

已经解决,问题描述:在开发系统时候运行程序突然报出“WebDev.WebServer40.exe已停止工作”的错误,程序调试运行,发现程序在打开数据库时候报错,也就是Connection.Open()处. 但是发现程序连接本地数据库正常,连接内网服务器数据库会报错,但是Sqlserver是可以直接连接到内网服务器数据库,所以排除了程序问题和数据库远程设置问题. 解决方法:经过几个星期断断续续的查找和试验,最后发现是的Winsock协议配置有问题,导致网络连接出现异常,有资料说是因为360安全卫士

WebDev.WebServer40.exe已停止工作

问题场景 错误根源 /// <summary> /// 添加试卷 /// </summary> /// <param name="qclass"></param> /// <returns></returns> public bool AddTextPaper(Exam_TextPaper qclass) { return AddTextPaper(qclass);//是因为这里进入了死循环.应为dal.AddTe

Eclipse调用hadoop2运行MR程序(转)

hadoop:hadoop2.2 ,windows myeclipse环境: Eclipse调用hadoop运行MR程序其实就是普通的java程序可以提交MR任务到集群执行而已.在Hadoop1中,只需指定jt(jobtracker)和fs(namenode)即可,一般如下: [java] view plaincopy Configuration conf = new Configuration(); conf.set("mapred.job.tracker", "192.1

PB调用系统自带的DLL 实现MD5

适用环境:powerbuilder 10.0以后的版本  window server2003以后的测试可用 PB也可以调用系统自带的DLL 实现MD5 其中md5file对大附件的处理速度也比第三方组件快一些 这里可以去下载附件 //调用样例: u_derek_md5 lu_md5 lu_md5=create u_derek_md5 string ls_text="123" string ls_result,ls_ret string ls_filepath="C:\1.tx

python模拟鼠标键盘操作 GhostMouse tinytask 调用外部脚本或程序 autopy右键另存为

1.参考 autopy (实践见最后一章节) 用Python制作游戏外挂(上) AutoPy Introduction and Tutorial autopy.mouse.smooth_move(1, 1) 可以实现平滑移动 autopy - API Reference pip install PyUserInput SavinaRoja/PyUserInput [python3.5][PyUserInput]模拟鼠标和键盘模拟 Python-模拟鼠标键盘动作 autoit selenium借助

vb如何编写带执行参数的exe程序

关于vb如何编写带执行参数的exe程序 ,可以通过vb自带的 "command()"  命令来完成. 下面是CSDN说明: Command 函数 返回命令行的参数部分,该命令行用于装入 Microsoft Visual Basic 或 Visual Basic 开发的可执行程序. 语法 Command 说明 当从命令行装入 Visual Basic 时,/cmd 之后的命令行的任何部分作为命令行的参数传递给程序.下面的示例中,cmdlineargs 代表 Command 函数返回的参数

(转)Android调用系统自带的文件管理器进行文件选择并获得路径

Android区别于iOS的沙盒模式,可以通过文件浏览器浏览本地的存储器.Android API也提供了相应的接口. 基本思路,先通过Android API调用系统自带的文件浏览器选取文件获得URI,然后将URI转换成file,从而得到file. 调用系统自带的文件浏览器 public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState