码迷,mamicode.com
首页 > Web开发 > 详细

aspx页面生成html

时间:2014-10-05 11:04:38      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:os   ar   文件   sp   c   html   r   new   htm   

 

        /// <summary>
        /// aspx生成Html
        /// </summary>
        /// <param name="Url"></param>
        /// <returns></returns>
        public static string GetAspxHtml(string Url)
        {
            string res = "";

            StringWriter strHTML = new StringWriter();
            System.Web.UI.Page myPage = new Page(); //System.Web.UI.Page中有个Server对象,我们要利用一下它
            myPage.Server.Execute(Url, strHTML); //将asp_net.aspx将在客户段显示的html内容读到了strHTML中

            res = strHTML.ToString();
            strHTML.Close(); //关闭StringWriter

            //StreamWriter sw = new StreamWriter(Path + FileName, true, System.Text.Encoding.GetEncoding("GB2312"));
            ////新建一个文件Test.htm,文件格式为GB2312 
            //sw.Write(strHTML.ToString()); //将strHTML中的字符写到Test.htm中               
            //sw.Close(); //关闭StreamWriter
            //return true;               

            return res;
        }

aspx页面生成html

标签:os   ar   文件   sp   c   html   r   new   htm   

原文地址:http://www.cnblogs.com/chencidi/p/4006748.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!