我需要在与母版页关联的所有内容页中使用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'”错误

最佳答案

如果您要从外部javascript访问radcontrols。您应该知道该函数的参数。

例如 :

function open()
{
window.open("Hello World", 320, 100, "Information Message");
}


上面的脚本与Radcontrols不同。
您需要添加参数

function open(sender, args)
{
radalert("Hello World", 320, 100, "Information Message");
}

07-24 18:09