[CLOSED] Panel Load Content is not working in "Chrome"

  1. #1

    [CLOSED] Panel Load Content is not working in "Chrome"

    Hi,

    In a simple form I just added one panel and button, while click on button the panel content will load. It is working in IE but not in chrome. Below is the code...

    <%@ Page Language="VB" AutoEventWireup="false" CodeFile="LoadContentTest.aspx.vb" Inherits="Testing_LoadContentTest" %>
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title></title>
    </head>
    <body>
        <form id="form1" runat="server">
        <ext:ResourceManager ID="ResourceManager1" runat="server" />
        <div>
        <ext:Panel ID="ifPanel" runat="server" Width="600" Height="300">
        </ext:Panel>
        <ext:Button ID="btnLoadContent" runat="server" Text="Load Content">
        <DirectEvents>
        <Click OnEvent="LoadContent"></Click>
        </DirectEvents>
        </ext:Button>
        </div>
        </form>
    </body>
    </html>
    code behind

    Imports Ext.Net
    
    Partial Class Testing_LoadContentTest
        Inherits System.Web.UI.Page
    
        Public Sub LoadContent(ByVal sender As Object, ByVal e As DirectEventArgs)
            'ifPanel.AutoLoad.Mode = LoadMode.IFrame
            'ifPanel.AutoLoad.Url = "http://www.google.co.in/"
            ifPanel.LoadContent("http://www.google.co.in/")
        End Sub
    End Class
    Last edited by Daniil; Jan 02, 2012 at 8:22 AM. Reason: [CLOSED]
  2. #2
    Hi,

    It doesn't work in IE for me.

    As far as I know Google prevents now its site to be loaded in an iframe.

    Please try some another site, for example:
    http://www.ext.net
    For me it works in both IE and Chrome.
  3. #3
    Hi Daniil,

    Yes, http://www.ext.net is working. I would like to know, Is chrome preventing the google site to load in iframe? or google site itself is not loading in iframe? because it is loading in IE 7.0

    Quote Originally Posted by Daniil View Post
    Hi,

    It doesn't work in IE for me.

    As far as I know Google prevents now its site to be loaded in an iframe.

    Please try some another site, for example:
    http://www.ext.net
    For me it works in both IE and Chrome.
  4. #4
    Well, Google prevents its site to be loaded in an iframe, because it's not loaded in IE8, IE9, FireFox, Chrome.

    And you are right, it's loaded in IE7. And IE6 as well.

    I think they somehow missed these browsers to check or they are sure that it won't be loaded. Or, maybe, didn't consider these browsers.

    Anyways, we can't see any way to allow Google site to be loaded in browsers which prevent it.

Similar Threads

  1. [CLOSED] Problems when usin "Content" instead of "Items"
    By Pablo_Azevedo in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Jul 24, 2012, 1:43 PM
  2. [CLOSED] How does "MaskCls" work for "AutoLoad" mask in panel control
    By leon_tang in forum 1.x Legacy Premium Help
    Replies: 5
    Last Post: Jul 19, 2012, 12:09 PM
  3. Replies: 1
    Last Post: Jun 26, 2012, 11:29 AM
  4. Replies: 5
    Last Post: May 02, 2012, 5:37 PM
  5. Replies: 2
    Last Post: Jun 26, 2011, 1:59 AM

Tags for this Thread

Posting Permissions