我需要在与母版页关联的所有内容页面中使用radalert显示消息。
我无法将JavaScript代码添加到母版页,因此我必须在外部JavaScript文件中添加以下指定的代码。
当下面指定的代码添加到内容页面时,它会在会话到期之前显示该消息。 JavaScript代码:
var sessionTimeoutWarning = "1";
var sessionTimeout = "2";
var timeOnPageLoad = new Date();
setTimeout('RedirectToWelcomePage()', parseInt(sessionTimeout) * 60 * 1000);
function RedirectToWelcomePage() {
var message = "Session expired. Redirecting to Login page";
radalert(message, 320, 100, "Information Message");
window.location = "Login.aspx"
}
但是当代码被添加到外部javascipt文件中以便它可以在依赖于母版页的所有页面中实现时,它会在radalert <给出“无法获取未定义或空引用的属性'radalert'错误< / p>
答案 0 :(得分:1)
如果您从外部JavaScript访问radcontrols。您应该知道该函数的参数..
例如:
function open()
{
window.open("Hello World", 320, 100, "Information Message");
}
以上脚本与Radcontrols不同。 您需要添加参数
function open(sender, args)
{
radalert("Hello World", 320, 100, "Information Message");
}