如何将脚本添加到 Dynamics Crm main.aspx 页面?

How can I add script to Dynamics Crm main.aspx page?

我尝试使用 javascript 禁用特定用户登录。如果用户尝试登录,我将关闭 window。我看到了一些关于将脚本添加到 main.aspx 页面的示例,但它没有用。

请帮忙。

我解决了。我加了

<script>

this.onload=function(){
if(USER_GUID.indexOf("{D9D73FD0-F377-E511-85D2-000C29458CDD}") > -1)
{
 window.location.replace(null);
}
}   
</script>

在 main.aspx

中的结束正文标记之前