一、控制面板—>程序和功能—>打开或关闭Windows功能
把相关的功能勾上,点“确定”
二、新建一个网站,配置ISAPI和CGI限制、处理程序映射
三、CGI控制台应用程序代码:
using System; using System.Collections.Generic; using System.Text; using System.Threading; namespace CGI { class Program { static int i = 0; static void Main(string[] args) { Thread thread = new Thread(new ParameterizedThreadStart(delegate(object obj) { while (true) { if (i < 100) { i++; Thread.Sleep(100); } else { string queryStr = Environment.GetEnvironmentVariable("QUERY_STRING"); string[] paramArr = queryStr.Split('&'); string[] keyValue = paramArr[0].Split('='); Console.Write("Content-Type: text/html;charset=GB2312;\n\n"); Console.Write("{\"d\":\"您传入的参数为:" + keyValue[1] + ",输出结果为:" + i + "\"}"); Environment.Exit(0); } } })); thread.Start(); } // end of Main } // end of Program }