I have an iframe control in View.
<iframe width="100%" height="800" ng-src="{{IframeSrcUrl}}"></iframe>
In the controller, I have a scope variable like below. But the iframe is not getting the url from scope variable. Also, how do we append additional query string parameters in the controller?
$scope.IframeSrcUrl = 'https://mmr.com';
Thanks!