1

我使用这段代码:

<iframe src="@HttpContext.Current.Server.MapPath("~/Temp/sample.docx")" height="800" scrolling="no" align="top" frameborder="0" >
  <p>Your browser does not support iframes.</p>
</iframe>

但我收到此错误:

The address wasn't understood 

Firefox 不知道如何打开这个地址,因为协议 (d) 没有与任何程序关联。

您可能需要安装其他软件才能打开此地址。

4

1 回答 1

1

如果你使用的是 ASP.NET MVC,那么 src 必须这样写:

src="@Url.Content("/Temp/sample.docx")"
于 2012-11-22T06:11:52.713 回答