In IFRAME of order entity I am calling another custom website that holds the treeview. The purpose of the treeview in my scenario is to load documents from CMS and bind with gridview. The whole story works fine as soon as I try to access the site in localhost.
But when I pass the url of the website in IFRAME it looks that it made the treeview disable. I tried to write the response in page load event but treeview events does not seems to workable. I would like to hear form gurus what I am doing wrong or missing in setting up the following treeview.
<asp:TreeView ID="docType" runat="server" ForeColor="Black" OnSelectedNodeChanged="docType_SelectedNodeChanged"> <Nodes> <asp:TreeNode Expanded="True" Text="Document Type" Value="doctype"> <asp:TreeNode ImageUrl="~/images/Folders-Documents 16x16.png" Text="Survey Request" Value="abc"></asp:TreeNode> <asp:TreeNode ImageUrl="~/images/Folders-Documents 16x16.png" Text="Title Contin" Value="cde"></asp:TreeNode> <asp:TreeNode ImageUrl="~/images/Folders-Documents 16x16.png" Text="Chain of Title" Value="efg"></asp:TreeNode> <asp:TreeNode ImageUrl="~/images/Folders-Documents 16x16.png" Text="Certificate of Occupancy" Value="ghi"></asp:TreeNode> <asp:TreeNode ImageUrl="~/images/Folders-Documents 16x16.png" Text="Tax Search" Value="ijk"></asp:TreeNode> <asp:TreeNode ImageUrl="~/images/Folders-Documents 16x16.png" Text="Smoke Detector Search" Value="klm"></asp:TreeNode> <asp:TreeNode ImageUrl="~/images/Folders-Documents 16x16.png" Text="Fuel Oil Search" Value="mno"></asp:TreeNode> <asp:TreeNode ImageUrl="~/images/Folders-Documents 16x16.png" Text="Air Search" Value="opq"></asp:TreeNode> </asp:TreeNode> </Nodes> </asp:TreeView>