473,399 Members | 3,302 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

Citrix "The Page cannot be displayed"

I have the following code which works fine in IE6 and IE7 and FireFox, but
when I run IE6 on Citrix I get "The page cannot be displayed" in the iframe.
We don't have IE7 on Citrix so I can't try it.

<span id="ShowReport" disabled="disabled"
style="display:inline-block;height:1200px;width:880px;">
<div>
<iframe src=../../WsiLogo.gif<frame src=../../WsiLogo.gif>
<embed src=../../WsiLogo.gif</iframe>
</div>
</span>
I know little about Citrix and our Citrix admin knows little about HTML, so
between two of us we know nothing.

Does anyone have any suggestions on how to fix this?

Thank You

Peter
Jun 27 '08 #1
4 3494
"Peter" <cz****@nospam.nospamwrote in message
news:uP**************@TK2MSFTNGP04.phx.gbl...
I have the following code which works fine in IE6 and IE7 and FireFox, but
when I run IE6 on Citrix I get "The page cannot be displayed" in the
iframe.
We don't have IE7 on Citrix so I can't try it.

<span id="ShowReport" disabled="disabled"
style="display:inline-block;height:1200px;width:880px;">
<div>
<iframe src=../../WsiLogo.gif<frame src=../../WsiLogo.gif>
<embed src=../../WsiLogo.gif</iframe>
</div>
</span>
I know little about Citrix and our Citrix admin knows little about HTML,
so
between two of us we know nothing.

Does anyone have any suggestions on how to fix this?

The HTML doesn't appear to make a great deal of sense.

Try a very simple page that only has this in the body:-

<iframe src="../../WsiLogo.gif"></iframe>

Consider using an absolute path instead of the relative one you are using
here.

I can't see anything here that Citirix itself would impact.

BTW, why are you opening a gif in an IFrame? Try visiting the URL to the
gif directly using IE address bar, what happens?

--
Anthony Jones - MVP ASP/ASP.NET
Jun 27 '08 #2
Hi Peter,

From your description, you're encountering some problem displaying an
ASP.NET web page(with iframe) in Citrix environment, correct?

As for the this problem, it is likely that the webbrowser's behavior
differs from normal environment. I suggest you try the following things to
see whether the http request from IE browser differs from normal
environment:

1. At server-side, you can check IIS log to see whether the request (from
the IFRAME) is correctly sent to server and any error entry exists in IIS
log.

2. You can download the web development helper tool to trace the http
messages(such as the one send for the iframe):

#Web Development Helper
http://projects.nikhilk.net/WebDevHelper/

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
>From: "Peter" <cz****@nospam.nospam>
Subject: Citrix "The Page cannot be displayed"
Date: Wed, 7 May 2008 16:19:03 -0500
>
I have the following code which works fine in IE6 and IE7 and FireFox, but
when I run IE6 on Citrix I get "The page cannot be displayed" in the
iframe.
>We don't have IE7 on Citrix so I can't try it.

<span id="ShowReport" disabled="disabled"
style="display:inline-block;height:1200px;width:880px;">
<div>
<iframe src=../../WsiLogo.gif<frame src=../../WsiLogo.gif>
<embed src=../../WsiLogo.gif</iframe>
</div>
</span>
I know little about Citrix and our Citrix admin knows little about HTML,
so
>between two of us we know nothing.

Does anyone have any suggestions on how to fix this?

Thank You

Peter
Jun 27 '08 #3

"Anthony Jones" <An*@yadayadayada.comwrote in message
news:ew**************@TK2MSFTNGP05.phx.gbl...
"Peter" <cz****@nospam.nospamwrote in message
news:uP**************@TK2MSFTNGP04.phx.gbl...
>I have the following code which works fine in IE6 and IE7 and FireFox,
but
when I run IE6 on Citrix I get "The page cannot be displayed" in the
iframe.
>We don't have IE7 on Citrix so I can't try it.

<span id="ShowReport" disabled="disabled"
style="display:inline-block;height:1200px;width:880px;">
<div>
<iframe src=../../WsiLogo.gif<frame src=../../WsiLogo.gif>
<embed src=../../WsiLogo.gif</iframe>
</div>
</span>
I know little about Citrix and our Citrix admin knows little about HTML,
so
>between two of us we know nothing.

Does anyone have any suggestions on how to fix this?


The HTML doesn't appear to make a great deal of sense.

Try a very simple page that only has this in the body:-

<iframe src="../../WsiLogo.gif"></iframe>

Consider using an absolute path instead of the relative one you are using
here.

I can't see anything here that Citirix itself would impact.

BTW, why are you opening a gif in an IFrame? Try visiting the URL to the
gif directly using IE address bar, what happens?

--
Anthony Jones - MVP ASP/ASP.NET

I tried the following on Citrix

http://reports01/reports/WsiLogo.gif

and got the same error "The Page cannot be displayed"

but if I try

http://reports01/reports/Test.html

it works just fine

and if I try on none-citrix computer everything works.
Jun 27 '08 #4
Hi Peter,

Have you tried using some trace tool(such as the web development helper for
IE) to watch the http traffic for the problem page to see whether there is
anything abnormal? I haven't a citrix environment on hand and cannot
perform the exact test,.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
>From: "Peter" <cz****@nospam.nospam>
References: <uP**************@TK2MSFTNGP04.phx.gbl>
<ew**************@TK2MSFTNGP05.phx.gbl>
>Subject: Re: Citrix "The Page cannot be displayed"
Date: Thu, 8 May 2008 23:29:36 -0500
>

"Anthony Jones" <An*@yadayadayada.comwrote in message
news:ew**************@TK2MSFTNGP05.phx.gbl...
>"Peter" <cz****@nospam.nospamwrote in message
news:uP**************@TK2MSFTNGP04.phx.gbl...
>>I have the following code which works fine in IE6 and IE7 and FireFox,
but
when I run IE6 on Citrix I get "The page cannot be displayed" in the
iframe.
>>We don't have IE7 on Citrix so I can't try it.

<span id="ShowReport" disabled="disabled"
style="display:inline-block;height:1200px;width:880px;">
<div>
<iframe src=../../WsiLogo.gif<frame src=../../WsiLogo.gif>
<embed src=../../WsiLogo.gif</iframe>
</div>
</span>
I know little about Citrix and our Citrix admin knows little about HTML,
so
>>between two of us we know nothing.

Does anyone have any suggestions on how to fix this?


The HTML doesn't appear to make a great deal of sense.

Try a very simple page that only has this in the body:-

<iframe src="../../WsiLogo.gif"></iframe>

Consider using an absolute path instead of the relative one you are using
here.

I can't see anything here that Citirix itself would impact.

BTW, why are you opening a gif in an IFrame? Try visiting the URL to the
gif directly using IE address bar, what happens?

--
Anthony Jones - MVP ASP/ASP.NET


I tried the following on Citrix

http://reports01/reports/WsiLogo.gif

and got the same error "The Page cannot be displayed"

but if I try

http://reports01/reports/Test.html

it works just fine

and if I try on none-citrix computer everything works.
Jun 27 '08 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Joe | last post by:
I have an upload file operation in the web application. UploadForm.asp is the form, and UploadAction.asp is the form processing. //UploadForm.asp <FORM NAME="InputForm"...
14
by: VMI | last post by:
Everytime I open my machine's MSDN and look for a subject, when I double-click on anything, I get "The page cannot be displayed" . What's wrong?
1
by: JohnZing | last post by:
i tried to install asp.net forums all went ok, but after login i always get "Object moved to here." in firefox or "The page cannot be displayed" in IE when i hit refresh, the page loads fine. ...
1
by: kongkong99 | last post by:
Hi, I have an ASP.NET application that loads files, parses them and loads in the database which is running in window 2000 webserver. When I load a text file after the file is parsed and the...
1
by: emon.haider | last post by:
Hi guys, I just made a web application using ASP.Net and C#. The application compiles and works fine from my workstation, but after I uploaded it to my webserver, I am getting an error of "the...
1
by: LeoKoach | last post by:
I have SSI 5+ and running Server 2000 Advance on my laptop computer. Most of you might not familiar but I also run Web Extender (An EMC Documentum Product) locally as a test site. It uses ASP.NET. I...
2
by: MicroMinds | last post by:
Hi, I have installed jdk 6 and tomcat 4.1.29 in my local machine. Just want to run some sample web application. When tried to check if tomcat works fine using http://localhost:8080, I'm getting...
6
by: TC | last post by:
Hey All, I'm receiving a weird error in IE now: "The XML page cannot be displayed" This is even with the simplest of pages that I previously could view. Any ideas?
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.