I am using CRM 2013. I have added Iframe on FORM. I am showing custom ASPX page in Iframe. Whenever I create a new record ans save. the Iframe doesn't refresh.
When we save the form refreshes but Iframe doesn't. I
have added the below code to refresh the iframe on save of the record.. but it is not working.. I have tried the same on Load of the form for Update formtype. it is not working.
I have tried to add Random Parameters to existing url but didn't work.
var IFrame = Xrm.Page.ui.controls.get("IFRAME_test");
var Url = IFrame.getSrc();
IFrame.setSrc(Url);
Please help!