iframe长度问题 IE6下不显示 || C#写入txt文件

1.去掉<td>下的height=100%

2. 文件头改成:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<html xmlns="http://www.w3.org/1999/xhtml" >


3. C#写入txt文件


using System.IO;


string str = "hello";
        StreamWriter sw = new StreamWriter(System.Web.HttpContext.Current.Server.MapPath("~")+"\\txtwriter.txt", true);  //true表示追加方式
        sw.WriteLine(str);
        sw.Close();//写入

你可能感兴趣的:(html,iframe,C#,IE)