帮帮忙,关于转换含有treeview的aspx页面为html页面的出现问题
html页面通过一下方法可以转换出
调用的方法是这样的:
convertHtml("../../Courses/Left.aspx", "../../HtmlCourses/Left.html", true);
/// <summary>
/// 转为Html文件
/// </summary>
/// <param name="strInFileName">输入文件名</param>
/// <param name="strOutFileName">输出文件名</param>
/// <param name="isOverWriter">是否覆盖已有文件</param>
private void convertHtml(string strInFileName, string strOutFileName, bool isOverWriter)
{
string fileName = Server.MapPath(strOutFileName);
bool s = isExistFile(fileName);
if (s == true)
{
if (isOverWriter == false)
{
return;
}
else
{
writeContent(fileName, strInFileName);
return;
}
}
writeContent(fileName, strInFileName);
}
/// 把流写入缓存
/// </summary>
/// <param name="strInFileName"></param>
private void writeContent(string strPOutFileName, string strInFileName)
{
StringWriter sw = new StringWriter();
try
{
Server.ScriptTimeout = 4;
Server.Execute(strInFileName, sw);
}
catch (Exception e)
{
throw e;
}
string content = sw.ToString();
using (FileStream fs = new FileStream(strPOutFileName, FileMode.Create, FileAccess.Write, FileShare.Write))
{
using (StreamWriter streamw = new StreamWriter(fs, System.Text.Encoding.GetEncoding("gb2312")))
{
streamw.Write(content);
}
}
}
转换之后的html页面不能单独运行,发现其中的代码
<body leftmargin="0" topmargin="0" onLoad="Mintools();">
<form name="form1" method="post" action="../../Courses/Left.aspx" id="form1" leftmargin="0" topmargin="0">
仍需left.aspx才能正常运行。
哪位知道的大哥帮帮忙,感激不尽! --------------------编程问答-------------------- 多少天过去了,还没人回答!
我自己后来搞定了
没有使用treeview做导航目录,使用table了,这样生成出的目录的静态页面就可以了。
补充:.NET技术 , C#