Я пытаюсь встроить Google Viewer просмотра на моей странице.Вот код 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 Google Viewer Viewer ...
Итак, я встроил скрипт в заголовок, и он заработал.Но проблема в том, что если я делаю это в пользовательском элементе управления или на странице, унаследованной от главной страницы, я снова получаю эти ошибки.
Как я могу решить эту проблему?
Спасибо.