Google文档查看器在ASP.Net页面中出现javascript错误

时间:2012-01-06 10:23:06

标签: javascript asp.net iframe master-pages google-docs

我正在尝试在我的页面中嵌入谷歌文档查看器。 这是test.aspx代码:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="test.aspx.cs" Inherits="Web_Application.test" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>

    <iframe id="documentLoader" src="https://docs.google.com/viewer?embedded=true&url=http://view.samurajdata.se/license.pdf"
 style="width:100%; height:800px;">
 </iframe>
</body>
</html>

这是我的test.aspx.cs

namespace Web_Application
{
    public partial class test : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }
    }
}

我收到错误,例如

'Line: 409
Error: Unable to get value of the property 'k': object is null or undefined'

'Line: 458
Error: Unable to get value of the property 'a': object is null or undefined'

来自谷歌文档查看器在线javascript资源...

所以我将脚本嵌入到标题中并且它有效。但问题是,如果我在用户控件或从母版页继承的页面中执行此操作,我会再次收到这些错误。

我该如何解决这个问题?

谢谢。

2 个答案:

答案 0 :(得分:0)

尝试这个iframe脚本独立于任何浏览器或版本,这将起作用....

<iframe id="documentLoader" src="https://docs.google.com/viewer?url=http://view.samurajdata.se/license.pdf&chrome=true" style="width: 100%; height: 800px;">
</iframe>

标记是的,如果有效!!! :)

答案 1 :(得分:0)

<iframe id="documentLoader"
        src="https://docs.google.com/viewer?url=http//view.samurajdata.se/license.pdf&embedded=true"
        style="width:100%; height:800px;">