国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

C# CGI程序

2019-11-17 02:44:14
字體:
來源:轉載
供稿:網友

C# CGI程序

一、控制面板—>程序和功能—>打開或關閉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}
View Code

四、Web程序頁面代碼:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CGITest.aspx.cs" Inherits="Web監聽.CGITest" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server">    <title></title>    <link href="/JS/easyui/easyui.CSS" rel="stylesheet" type="text/css" />    <script src="/JS/jquery.min.js" type="text/javascript"></script>    <script src="/JS/easyui/jquery.easyui.min.js" type="text/Javascript"></script>    <script src="/JS/SimpoWindow.js" type="text/javascript"></script>    <script type="text/javascript">        $(function () {            $.Ajax({                type: "get",                url: "http://localhost:160/cgi.exe?data=abcd",                dataType: "json",                error: function (xmlhttpRequest, textStatus, errorThrown) {                    $("#msg").html(textStatus);                },                success: function (data, textStatus) {                    $("#msg").html(data.d);                }            });            //倒計時            UpdateTime(10);        });        //倒計時        function UpdateTime(n) {            if ($("#msg").html().indexOf("請等待") != -1) {                $("#msg").html("請等待(" + n + ")......");                if (n > 0) {                    setTimeout(function () {                        UpdateTime(n - 1);                    }, 1000);                }            }        }    </script></head><body>    <form id="form1" runat="server">    <div id="msg" style="text-align: center; vertical-align: middle;">        請等待......    </div>    </form></body></html>
View Code


上一篇:C#調用存儲過程詳解

下一篇:C#結構

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 固阳县| 武鸣县| 古丈县| 桑植县| 桂阳县| 鱼台县| 玉溪市| 阿拉善右旗| 苍梧县| 皮山县| 北安市| 兴化市| 临江市| 确山县| 尚志市| 紫阳县| 红桥区| 云浮市| 辽宁省| 蒙自县| 阳高县| 什邡市| 汽车| 滨海县| 盐津县| 北川| 虹口区| 漳浦县| 罗山县| 资溪县| 大新县| 沂南县| 肇州县| 香港 | 汨罗市| 汕头市| 铁岭县| 琼海市| 涞源县| 高安市| 开封市|