ASP.NET生成静态文件的一个静态类
某网友刚刚传给我的,稍微看了一下,感觉还不错吧,先记下来,备用,今天早上有段时候JAVAEYE上去好慢。不知道是不是服务器被攻击了。。呵呵。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Net;
using System.IO;
using System.Text;
using System.Web.UI.HtmlControls;
using System.Text.RegularExpressions;
/// <summary>
///CreateHtml 的摘要说明
/// </summary>
public class CreateHtml:System.Web.UI.Page
{
public CreateHtml()
{
//
//TODO: 在此处添加构造函数逻辑
//
}
/// <summary>
/// 生成静态页面,生成位置是本项目下
/// </summary>
/// <param name="strURL">请求的URL</param>
/// <param name="strRelPath">创建的路径及文件名,路径为相对路径</param>
public bool Nei_Create(string strURL, string strRelPath)
{
string strFilePage;
strFilePage = HttpContext.Current.Server.MapPath(strRelPath);
StreamWriter sw = null;
//获得aspx的静态html
try
{
if (File.Exists(strFilePage))
{
File.Delete(strFilePage);
}
sw = new StreamWriter(strFilePage, false, System.Text.Encoding.GetEncoding("gb2312"));
System.Net.WebRequest wReq = System.Net.WebRequest.Create(strURL);
System.Net.WebResponse wResp = wReq.GetResponse();
System.IO.Stream respStream = wResp.GetResponseStream();
System.IO.StreamReader reader = new System.IO.StreamReader(respStream, System.Text.Encoding.GetEncoding("gb2312"));
string strTemp = reader.ReadToEnd();
Regex r1 = new Regex("<input type=\"hidden\" name=\"__EVENTTARGET\".*/>", RegexOptions.IgnoreCase);
Regex r2 = new Regex("<input type=\"hidden\" name=\"__EVENTARGUMENT\".*/>", RegexOptions.IgnoreCase);
Regex r3 = new Regex("<input type=\"hidden\" name=\"__VIEWSTATE\".*/>", RegexOptions.IgnoreCase);
Regex r4 = new Regex("<form .*id=\"form1\">", RegexOptions.IgnoreCase);
Regex r5 = new Regex("</form>");
Regex r6 = new Regex("<input type=\"hidden\" name=\"__EVENTVALIDATION\".*/>", RegexOptions.IgnoreCase);
strTemp = r1.Replace(strTemp, "");
strTemp = r2.Replace(strTemp, "");
strTemp = r3.Replace(strTemp, "");
strTemp = r4.Replace(strTemp, "");
strTemp = r5.Replace(strTemp, "");
strTemp = r6.Replace(strTemp, "");
sw.Write(strTemp);
}
catch (Exception ex)
{
HttpContext.Current.Response.Write(ex.Message);
HttpContext.Current.Response.End();
return false;//生成到出错
}
finally
{
sw.Flush();
sw.Close();
sw = null;
}
return true;
}
/// <summary>
/// 生成静态页面,生成位置不在本项目下
/// </summary>
/// <param name="strURL">请求的URL</param>
/// <param name="strRelPath">创建的路径及文件名,路径为绝对路径</param>
public bool Wai_Create(string strURL, string strRelPath,string filename)
{
string strFilePage;
strFilePage = strRelPath + "\\" + filename;
StreamWriter sw = null;
//获得aspx的静态html
try
{
if (!Directory.Exists(strRelPath))
{
Directory.CreateDirectory(strRelPath);
}
if (File.Exists(strFilePage))
{
File.Delete(strFilePage);
}
sw = new StreamWriter(strFilePage, false, System.Text.Encoding.GetEncoding("gb2312"));
System.Net.WebRequest wReq = System.Net.WebRequest.Create(strURL);
System.Net.WebResponse wResp = wReq.GetResponse();
System.IO.Stream respStream = wResp.GetResponseStream();
System.IO.StreamReader reader = new System.IO.StreamReader(respStream, System.Text.Encoding.GetEncoding("gb2312"));
string strTemp = reader.ReadToEnd();
Regex r1 = new Regex("<input type=\"hidden\" name=\"__EVENTTARGET\".*/>", RegexOptions.IgnoreCase);
Regex r2 = new Regex("<input type=\"hidden\" name=\"__EVENTARGUMENT\".*/>", RegexOptions.IgnoreCase);
Regex r3 = new Regex("<input type=\"hidden\" name=\"__VIEWSTATE\".*/>", RegexOptions.IgnoreCase);
Regex r4 = new Regex("<form .*id=\"form1\">", RegexOptions.IgnoreCase);
Regex r5 = new Regex("</form>");
Regex r6 = new Regex("<input type=\"hidden\" name=\"__EVENTVALIDATION\".*/>", RegexOptions.IgnoreCase);
strTemp = r1.Replace(strTemp, "");
strTemp = r2.Replace(strTemp, "");
strTemp = r3.Replace(strTemp, "");
strTemp = r4.Replace(strTemp, "");
strTemp = r5.Replace(strTemp, "");
strTemp = r6.Replace(strTemp, "");
sw.Write(strTemp);
}
catch (Exception ex)
{
HttpContext.Current.Response.Write(ex.Message);
HttpContext.Current.Response.End();
return false;//生成到出错
}
finally
{
sw.Flush();
sw.Close();
sw = null;
}
return true;
}
public void FilePicDelete(string path)
{
System.IO.FileInfo file = new System.IO.FileInfo(path);
if (file.Exists)
file.Delete();
}
}
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Net;
using System.IO;
using System.Text;
using System.Web.UI.HtmlControls;
using System.Text.RegularExpressions;
/// <summary>
///CreateHtml 的摘要说明
/// </summary>
public class CreateHtml:System.Web.UI.Page
{
public CreateHtml()
{
//
//TODO: 在此处添加构造函数逻辑
//
}
/// <summary>
/// 生成静态页面,生成位置是本项目下
/// </summary>
/// <param name="strURL">请求的URL</param>
/// <param name="strRelPath">创建的路径及文件名,路径为相对路径</param>
public bool Nei_Create(string strURL, string strRelPath)
{
string strFilePage;
strFilePage = HttpContext.Current.Server.MapPath(strRelPath);
StreamWriter sw = null;
//获得aspx的静态html
try
{
if (File.Exists(strFilePage))
{
File.Delete(strFilePage);
}
sw = new StreamWriter(strFilePage, false, System.Text.Encoding.GetEncoding("gb2312"));
System.Net.WebRequest wReq = System.Net.WebRequest.Create(strURL);
System.Net.WebResponse wResp = wReq.GetResponse();
System.IO.Stream respStream = wResp.GetResponseStream();
System.IO.StreamReader reader = new System.IO.StreamReader(respStream, System.Text.Encoding.GetEncoding("gb2312"));
string strTemp = reader.ReadToEnd();
Regex r1 = new Regex("<input type=\"hidden\" name=\"__EVENTTARGET\".*/>", RegexOptions.IgnoreCase);
Regex r2 = new Regex("<input type=\"hidden\" name=\"__EVENTARGUMENT\".*/>", RegexOptions.IgnoreCase);
Regex r3 = new Regex("<input type=\"hidden\" name=\"__VIEWSTATE\".*/>", RegexOptions.IgnoreCase);
Regex r4 = new Regex("<form .*id=\"form1\">", RegexOptions.IgnoreCase);
Regex r5 = new Regex("</form>");
Regex r6 = new Regex("<input type=\"hidden\" name=\"__EVENTVALIDATION\".*/>", RegexOptions.IgnoreCase);
strTemp = r1.Replace(strTemp, "");
strTemp = r2.Replace(strTemp, "");
strTemp = r3.Replace(strTemp, "");
strTemp = r4.Replace(strTemp, "");
strTemp = r5.Replace(strTemp, "");
strTemp = r6.Replace(strTemp, "");
sw.Write(strTemp);
}
catch (Exception ex)
{
HttpContext.Current.Response.Write(ex.Message);
HttpContext.Current.Response.End();
return false;//生成到出错
}
finally
{
sw.Flush();
sw.Close();
sw = null;
}
return true;
}
/// <summary>
/// 生成静态页面,生成位置不在本项目下
/// </summary>
/// <param name="strURL">请求的URL</param>
/// <param name="strRelPath">创建的路径及文件名,路径为绝对路径</param>
public bool Wai_Create(string strURL, string strRelPath,string filename)
{
string strFilePage;
strFilePage = strRelPath + "\\" + filename;
StreamWriter sw = null;
//获得aspx的静态html
try
{
if (!Directory.Exists(strRelPath))
{
Directory.CreateDirectory(strRelPath);
}
if (File.Exists(strFilePage))
{
File.Delete(strFilePage);
}
sw = new StreamWriter(strFilePage, false, System.Text.Encoding.GetEncoding("gb2312"));
System.Net.WebRequest wReq = System.Net.WebRequest.Create(strURL);
System.Net.WebResponse wResp = wReq.GetResponse();
System.IO.Stream respStream = wResp.GetResponseStream();
System.IO.StreamReader reader = new System.IO.StreamReader(respStream, System.Text.Encoding.GetEncoding("gb2312"));
string strTemp = reader.ReadToEnd();
Regex r1 = new Regex("<input type=\"hidden\" name=\"__EVENTTARGET\".*/>", RegexOptions.IgnoreCase);
Regex r2 = new Regex("<input type=\"hidden\" name=\"__EVENTARGUMENT\".*/>", RegexOptions.IgnoreCase);
Regex r3 = new Regex("<input type=\"hidden\" name=\"__VIEWSTATE\".*/>", RegexOptions.IgnoreCase);
Regex r4 = new Regex("<form .*id=\"form1\">", RegexOptions.IgnoreCase);
Regex r5 = new Regex("</form>");
Regex r6 = new Regex("<input type=\"hidden\" name=\"__EVENTVALIDATION\".*/>", RegexOptions.IgnoreCase);
strTemp = r1.Replace(strTemp, "");
strTemp = r2.Replace(strTemp, "");
strTemp = r3.Replace(strTemp, "");
strTemp = r4.Replace(strTemp, "");
strTemp = r5.Replace(strTemp, "");
strTemp = r6.Replace(strTemp, "");
sw.Write(strTemp);
}
catch (Exception ex)
{
HttpContext.Current.Response.Write(ex.Message);
HttpContext.Current.Response.End();
return false;//生成到出错
}
finally
{
sw.Flush();
sw.Close();
sw = null;
}
return true;
}
public void FilePicDelete(string path)
{
System.IO.FileInfo file = new System.IO.FileInfo(path);
if (file.Exists)
file.Delete();
}
}
撸码:复制、粘贴,拿起键盘就是“干”!!!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具