C# CGI程式

來源:互聯網
上載者:User

標籤:style   blog   http   io   ar   color   os   sp   java   

一、控制台—>程式和功能—>開啟或關閉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# CGI程式

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.