最近在做一个.net生成静态页的程序,被这个问题给绊了好长时间了,希望各位有空的时候帮忙解决一下,小妹在这时不胜感谢了.
下面这部分代码主要是生成静态页的部分,放在一个cs文件里,出错的地方在我加粗的部分.
译错误 说明: 在编译向该请求提供服务所需资源的过程中出现错误。请检查下列特定错误详细信息并适当地修改源代码。
编译器错误信息: CS0116: 命名空间并不直接包含诸如字段或方法之类的成员
源错误:
源文件: D:\0312site\aspnews\newscode\addnews2.cs 行: 13
行 11: using System.Web.UI.HtmlControls;
行 12:
行 13: Public class Conn :System.Web.UI.Page
行 14: {
行 15: protected System.Web.UI.WebControls.TextBox Title;
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.IO;
using System.Text;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
Public class Conn :System.Web.UI.Page
{
Public Title,Content,WriteFrom As TExtbox
protected System.Web.UI.WebControls.TextBox Title;
protected System.Web.UI.WebControls.TextBox WriteFrom;
protected System.Web.UI.WebControls.TextBox Content;
public static bool WriteFile(Sender As Object,E As EventArgs)
{
string path = HttpContext.Current.Server.MapPath("/news/");
Encoding code = Encoding.GetEncoding("gb2312");
// 读取模板文件
string temp = HttpContext.Current.Server.MapPath("/news/text.html");
StreamReader sr=null;
StreamWriter sw=null;
string str="";
try
{
sr = new StreamReader(temp, code);
str = sr.ReadToEnd(); // 读取文件
}
catch(Exception exp)
{
HttpContext.Current.Response.Write(exp.Message);
HttpContext.Current.Response.End();
sr.Close();
}
string htmlfilename=DateTime.Now.ToString("yyyyMMddHHmmss")+".html";
// 替换内容
// 这时,模板文件已经读入到名称为str的变量中了
str = str.Replace("biaoti",Title.text);
str = str.Replace("content",Content.Text);
str = str.Replace("author",WriteFrom.Text);
// 写文件
try
{
sw = new StreamWriter(path + htmlfilename , false, code);
sw.Write(str);
sw.Flush();
}
catch(Exception ex)
{
HttpContext.Current.Response.Write(ex.Message);
HttpContext.Current.Response.End();
}
finally
{
sw.Close();
}
return true;
}
}