Hi,
How can we display external application using ME?
I tried the below sample to achieve by using simple iframe in html but not able to get output:
Code:public override void QueryList(EntreeScopeObject EntreeScope, EntreeListObject output)
{
//add a group to the output
EntreeListGroup myGroup = output.AddListGroup();
myGroup.ListHeader = "My Group Header";
//add a list item to the group
EntreeListItemBillboard item = myGroup.AddListItem<EntreeListItemBillboard>();
item.InnerHtml = "<iframe src='http://www.google.com'>google</iframe>";
}
but same thing is working fine with bing map. Any solution to achieve this?
-- Ravi