程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> 簡單的單頁c#生成靜態頁源碼,

簡單的單頁c#生成靜態頁源碼,

編輯:C#入門知識

簡單的單頁c#生成靜態頁源碼,


protected void BtGroup_ServerClick(object sender, EventArgs e)
        {
            //產業群首頁
            string tempGroupData = GetHttpData("http://www.goudiannao.com/Group/index.aspx");
            using (StreamWriter sw = new StreamWriter(this.Request.PhysicalApplicationPath + "Group\\Index.html", false, System.Text.Encoding.GetEncoding("utf-8")))
            {
                sw.Write(tempGroupData);
                sw.Flush();
            }
        
        
        }
        public string GetHttpData(string sUrl)
        {
            string sRslt = null;
            WebResponse oWebRps = null;
            WebRequest oWebRqst = WebRequest.Create(sUrl);
            oWebRqst.Timeout = 50000;
            try
            {
                oWebRps = oWebRqst.GetResponse();
            }           
         
            finally
            {
                if (oWebRps != null)
                {
                    StreamReader oStreamRd = new StreamReader(oWebRps.GetResponseStream(), System.Text.Encoding.GetEncoding("utf-8"));
                    sRslt = oStreamRd.ReadToEnd();
                    oStreamRd.Close();
                    oWebRps.Close();
                }
            }
            return sRslt;
        } 


一個單頁網站源碼要純靜態的越簡單越好,

純靜態、簡單得不能再簡單,請Ctrl+C:

<html>
<title>單頁網站源碼</title>
<body>這是一個單頁網站源碼</body>
</html>
 

一個簡單的單頁訂單網站 ?

單頁網站的訂單系統,我是找,無敵文案寫作軟件V1.0,這個軟件的作者給的。有後台管理功能,客戶管理,訂單管理,發貨管理,都可以實現,你們可以去看看。
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved