.mht文件未显示在<object>标记中

时间:2016-08-03 11:51:58

标签: html asp.net

这是我的控制器代码

public ActionResult Index()
{
   return View();
}

public ActionResult Index2()
{
   return Data(0);
}

public ActionResult Data(int id = 0)
{
   System.IO.FileStream Stream = new System.IO.FileStream(@"c:\Users\User\Desktop\1111\file.mht", System.IO.FileMode.Open);

   System.IO.TextReader TextReader=new System.IO.StreamReader(Stream);

   ContentResult ContentResult = Content(TextReader.ReadToEnd(), "message/rfc822");

   Stream.Dispose();

   return ContentResult;
}

以下是Index

的代码
<object data="../../Home/Data/0" style="height: 119px; width: 100%;">
</object>

“Index2”工作正常。但是不显示“索引”中对象标记中的内容。我做错了什么。

0 个答案:

没有答案