什么表格?Web Table or HtmlTable?

解决方案 »

  1.   

    没必要牙,你不能直接使用aspx页面么?如果非的修改html文件,你可以使用IO名字空间中的对象,读取html文件的内容,然后使用正则表达式来替换查找到的标记即可。
      

  2.   

    就是我现在有1个HTM文件比如说 c:\\test.htm 当用户访问我网站的时候,我修改test.htm文件,只要是增加几个文本,再让用户在IE里看见修改好的 test.htm
      

  3.   

    你可以放个iframe,<iframe src="aaa.aspx?id=111">
      

  4.   

    bitsbird(一瓢.net) 
    是html  table  由EXCEL表转化成的,我本来想转化成   web table  但不知道怎么做
      

  5.   

    string textZw = dReader["内容"].ToString();
    textZw = textZw.Replace("\r\n","<p>");
    textZw = textZw.Replace(" ","&nbsp;"); StreamReader sr = new StreamReader(Server.MapPath("")+@"\Infor.htm",System.Text.Encoding.GetEncoding("GB18030"));
    string text = sr.ReadToEnd();
    sr.Close();

    text = text.Replace("标题",dReader["标题"].ToString());
    text = text.Replace("正文",textZw);

    StreamWriter sw = new StreamWriter(Server.MapPath("")+@"\InforTmp.htm",false,System.Text.Encoding.GetEncoding("GB18030"));
    sw.Write(text);
    sw.Close();
    Response.Write("<script> window.open('inforTmp.htm','通知','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=yes,width=600,height=400,left=50,top=100,fullscreen=0,channelmode=0');</script>");