<a href="test.txt">用IE打开文本文件</a>

解决方案 »

  1.   

    添加:Content-disposition: attachment; filename=yourfile.txt
    可以实现下载
      

  2.   

    to sdyqingdao(达人自达):
       能具体一点吗?在什么地方添加?可以实现用“写字板”直接打开吗?
      

  3.   

    <script>
    function test(){
    window.location='view-source:'+window["mxh"].location.href
    }
    </script>
    <body>
    <iframe id=mxh src="test.txt"></iframe>
    <input onclick="test()" value="打开" type=button>你可以把iframe的width和height设为0
      

  4.   

    参见:
    http://www.csdn.net/Develop/read_article.asp?id=8907
      

  5.   

    谢谢net_lover(孟子E章),很好用。