最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

C#運(yùn)行CGI程序?qū)嵗?/h1>
 更新時(shí)間:2014年12月01日 16:17:18   投稿:shichen2014  
這篇文章主要介紹了C#運(yùn)行CGI程序的方法,實(shí)例講述了具體的配置步驟與實(shí)現(xiàn)代碼,具有一定的參考借鑒價(jià)值,需要的朋友可以參考下

本文實(shí)例講述了C#運(yùn)行CGI程序的方法。分享給大家供大家參考。具體實(shí)現(xiàn)方法如下:

一、控制面板—>程序和功能—>打開或關(guān)閉Windows功能

把相關(guān)的功能勾上,點(diǎn)“確定”

二、新建一個(gè)網(wǎng)站,配置ISAPI和CGI限制、處理程序映射

三、CGI控制臺(tái)應(yīng)用程序代碼:

復(fù)制代碼 代碼如下:
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\":\"您傳入的參數(shù)為:" + keyValue[1] + ",輸出結(jié)果為:" + i + "\"}");
                        Environment.Exit(0);
                    }
                }
            }));
            thread.Start();
        } // end of Main
    } // end of Program
}

四、Web程序頁面代碼:

復(fù)制代碼 代碼如下:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CGITest.aspx.cs" Inherits="Web監(jiān)聽.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);
                }
            });

            //倒計(jì)時(shí)
            UpdateTime(10);
        });

        //倒計(jì)時(shí)
        function UpdateTime(n) {
            if ($("#msg").html().indexOf("請(qǐng)等待") != -1) {
                $("#msg").html("請(qǐng)等待(" + 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;">
        請(qǐng)等待......
    </div>
    </form>
</body>
</html>

希望本文所述對(duì)大家的C#程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評(píng)論

旬邑县| 明溪县| 巨鹿县| 石泉县| 任丘市| 阿图什市| 建宁县| 北宁市| 星座| 屯昌县| 周宁县| 苏尼特右旗| 循化| 瑞昌市| 乳山市| 旬阳县| 广丰县| 乾安县| 紫阳县| 合川市| 磐石市| 焦作市| 札达县| 钟祥市| 绥宁县| 盐池县| 铁岭县| 崇文区| 沂源县| 普陀区| 双辽市| 武乡县| 曲麻莱县| 阿勒泰市| 二手房| 三穗县| 白河县| 洛宁县| 公主岭市| 邵东县| 龙游县|