How to refresh the crm form automatically from an iframe aspx page in crm 4.0
On my opportunity product form i have added a IFrame to display a asp.net web 开发者_JAVA技巧app. I want to refresh my opportunity product form when i click on a button in asp.net web app. How can i do that ?Its URGENT. Thanks in advance Sandeep.
Put this JavaScript on the iframe page and call it.
function refreshWindow() {
if (parent.window.location.href.indexOf("#") == -1) {
parent.window.location.href = parent.window.location.href + "#";
}
parent.window.location.href = parent.window.location.href.replace("#", "");
}
精彩评论