iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
I am getting an error that Internet Explorer cannot open the Internet site for the page when using a web panel. It only happens some of the time. Sometimes the page comes up with no errors. Here is a snippet of code that we are using to load the page. I am also attaching a screenshot of the error.
<ISWebDesktop:WebPaneManager ID="WebPaneManager1" runat="server" Height="92%" Width="100%">
<FrameStyle BorderStyle="Solid" ForeColor="White" BorderWidth="1px" BorderColor="#404040"
BackColor="#E0E0E0">
<Padding Top="4px" Left="4px" Bottom="4px" Right="4px"></Padding>
</FrameStyle>
<PaneSettings HeaderVisible="No">
<HeaderSubStyle BorderStyle="Solid" BackColor2="White" BorderWidth="1px" BorderColor="Gray"
Font-Size="8pt" Font-Names="Tahoma" BackColor="#E0E0E0" GradientType="Vertical">
</HeaderSubStyle>
<InfoTextStyle ForeColor="White" Font-Size="8pt" Font-Names="Tahoma">
</InfoTextStyle>
<ContainerStyle BorderStyle="Solid" ForeColor="Black" BorderWidth="1px" BorderColor="Gray"
Font-Size="8pt" Font-Names="Tahoma" BackColor="White" Overflow="Auto" OverflowX="Auto"
OverflowY="Auto">
</ContainerStyle>
<HeaderMainStyle BorderStyle="Solid" ForeColor="White" BackColor2="LightGray" BorderWidth="1px"
BorderColor="Gray" Font-Size="11pt" Font-Names="Arial" Font-Bold="True" BackColor="DimGray"
GradientType="Vertical">
<Padding Top="4px" Bottom="4px" Right="1px" Left="1px"></Padding>
</HeaderMainStyle>
</PaneSettings>
<RootGroupPane GroupType="VerticalTile" Image="/CommonLibrary/Images/WebDesktop/"
Name="RootGroup">
<Panes>
<ISWebDesktop:WebGroupPane GroupType="VerticalTile" Name="GroupPane0" Text="GroupPane 0">
<ISWebDesktop:WebPane Name="Pane0" Text="Pane 0" Width="Custom" WidthValue="10%" AllowCollapse="Yes">
<ContentTemplate>
<ISWebDesktop:WebNavPane ID="WebNavPane1" runat="server" Height="100%" Width="100%"
BarVisible="3" OnBarItemClick="NavPane_BarItemClick" OnBarClick="OnActiveBarChanged"
Name="paneTopic" >
<BarItemSettings DisplayMode="Text" TargetWindow="paneContent">
<ItemStyle>
<Active CssClass="clsOverActiveHyperlink">
</Active>
<Over Font-Bold="true">
</Over>
<Normal CssClass="clsOverTopicHyperlink" Overflow="Hidden" Cursor="Hand">
</Normal>
</ItemStyle>
<ItemsContainerStyle Width="100%" Font-Size="8.25pt" Font-Names="Tahoma" Height="100%"
Overflow="Auto" OverflowY="Auto">
<Padding Top="4px" Left="4px" Bottom="4px"></Padding>
</ItemsContainerStyle>
</BarItemSettings>
<BarSettings >
<CaptionStyle ForeColor="White" BackColor2="245, 245, 245" Font-Size="11pt" Font-Names="Arial"
Font-Bold="True" BackColor="Gray" Overflow="Hidden">
<Padding Top="4px" Left="2px" Bottom="4px" Right="2px"></Padding>
</CaptionStyle>
<BarStyle>
<Active BaseStyle="Normal" BackColor="LightGray">
<Over BaseStyle="Normal" BackColor="LightSteelBlue">
<Normal BackColor2="245, 245, 245" Font-Size="8.25pt" Font-Names="Tahoma" Font-Bold="True"
BackColor="White" GradientType="Vertical" Overflow="Hidden" Cursor="Hand">
</BarStyle>
</BarSettings>
<Bars>
<ISWebDesktop:WebNavBar CaptionDisplayMode="Text"
Name="MyWork" Text="My Work" Image="/images/help/reviewchanges.gif">
<Items>
<ISWebDesktop:WebNavBarItem DisplayMode="Text" Text="Recently Opened" Name="MainMRU.aspx" />
</Items>
</ISWebDesktop:WebNavBar>
</Bars>
<FrameStyle BorderWidth="1px" BorderColor="Silver" BackColor="White">
<FooterSettings>
<FooterStyle BackColor2="220, 220, 220" HorizontalAlign="Right" BackColor="White"
GradientType="Vertical" Overflow="Hidden"></FooterStyle>
</FooterSettings>
<GripStyle>
<Active BackColor2="0, 0, 0" BaseStyle="Normal" BackColor="Gray">
<Over BaseStyle="Normal">
<Normal BackColor2="128, 128, 128" BackColor="LightGray" GradientType="Vertical"
Overflow="Hidden">
</GripStyle>
</ISWebDesktop:WebNavPane>
</ContentTemplate>
</ISWebDesktop:WebPane>
<ISWebDesktop:WebPane ContentMode="UseIFrame" ContentURL="MainMRU.aspx" Name="paneDetails"
Text="Recently Opened" AllowResize="Yes" AllowCollapse="Yes" InProgressText="Loading Page...">
</Panes>
</ISWebDesktop:WebGroupPane>
</RootGroupPane>
<SplitterStyle >
<Active BaseStyle="Normal" BackColor="Black">
<Over BaseStyle="Normal" BackColor="Gray" >
<Normal BackColor="#E0E0E0">
</SplitterStyle>
</ISWebDesktop:WebPaneManager>
function OnActiveBarChanged(id, bar) {
var navPane = ISGetObject("WebNavPane1");
var navBar = navPane.GetActiveBar();
NavPane_BarItemClick(id, bar.GetActiveBarItem());
}
function NavPane_BarItemClick(id, barItem) {
var paneMgr = ISGetObject("WebPaneManager1");
var dtlPane = paneMgr.GetPaneByName("paneDetails");
var appName = barItem.Parent.Text;
dtlPane.SetContentURL(barItem.Name);
Hello,
I have tried your code, but it gets error when I run the sample. It looks like you are using a page called MainMRU.aspx, but I don't have that sample.
Could you provide that sample so that I could investigate further for your issue?
Thank you.
You can actually create a blank page named MainMRU.aspx. The page does not even have any code in it. The problem is that sometimes the page will load and sometimes we will get the error that "cannot open internet site."
Unfortunately, I was unable to replicate your issue on my end. The code that you provided in the docs file is working fine.
Could you check your WebDesktop build version and ensure that you have used the latest one?
My WebDesktop build version is 3.0.7200.324 and WebUI Framework version is 3.0.5000.770.
Please get the latest one using Update Manager if you haven't done so.
Yes, the error only happens some of the time. We were able to fix the problem by upgrading to IE 8. Our application needs to support IE7 as well....we need to continue to debug this and figure out why it does not work all the time with IE7.
The problem is that this issue cannot be replicated on my end. Therefore, I'm not sure this error occurs due to our control or the IE7 browser itself.
If the sample works fine in IE8, it could be IE7 is the caused of this problem.
Hope this helps.
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname