473,324 Members | 2,193 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,324 software developers and data experts.

[Mozilla from IDE] hangs on XML not well-formed

teo
Hallo,

I'd like to debug an .aspx page from the IDE
using another browser;
I choose Mozilla Firefox (ver 1.8.1: 2006)

Mozilla starts but the page never opens and an error occurs;
a light yellow page with a message in a red rectangle says:

Errore interpretazione XML: non well-formed
Indirizzo: file///c:/inetpub/wwwroot/...
Line number 1,column 2:
<% Page Language="VB" ....
How to use Mozilla from VS2005 ?
Also trying to open the page from
the IIS management panel in Windows Control Panel
I receive the same error.
Obviously no problem with IExplorer.

Jun 12 '07 #1
7 1504
In the Visual Studio IDE: right click on the desired page in Solution
Explorer, and choose "Browse With" and select Firefox.
Peter

--
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short urls & more: http://ittyurl.net


"teo" wrote:
Hallo,

I'd like to debug an .aspx page from the IDE
using another browser;
I choose Mozilla Firefox (ver 1.8.1: 2006)

Mozilla starts but the page never opens and an error occurs;
a light yellow page with a message in a red rectangle says:

Errore interpretazione XML: non well-formed
Indirizzo: file///c:/inetpub/wwwroot/...
Line number 1,column 2:
<% Page Language="VB" ....
How to use Mozilla from VS2005 ?
Also trying to open the page from
the IIS management panel in Windows Control Panel
I receive the same error.
Obviously no problem with IExplorer.

Jun 12 '07 #2
file:// means you try to open directly this file. Browse the *web site* on
which the page is located so that the web site can render the corresponding
markup instead of having the browser opening the "raw" server side
markup...

"teo" <te*@inwind.ita écrit dans le message de news:
i1********************************@4ax.com...
Hallo,

I'd like to debug an .aspx page from the IDE
using another browser;
I choose Mozilla Firefox (ver 1.8.1: 2006)

Mozilla starts but the page never opens and an error occurs;
a light yellow page with a message in a red rectangle says:

Errore interpretazione XML: non well-formed
Indirizzo: file///c:/inetpub/wwwroot/...
Line number 1,column 2:
<% Page Language="VB" ....
How to use Mozilla from VS2005 ?
Also trying to open the page from
the IIS management panel in Windows Control Panel
I receive the same error.
Obviously no problem with IExplorer.

Jun 13 '07 #3
teo
On Wed, 13 Jun 2007 16:52:55 +0200, "Patrice" <http://www.chez.com/scribe/>
wrote:
>file:// means you try to open directly this file. Browse the *web site* on
which the page is located so that the web site can render the corresponding
markup instead of having the browser opening the "raw" server side
markup...
Yes,
but accordingly to the Guide,
it should be possible to open a web page with a different browser
directly from the VS2005 IDE
(right-click from 'Solution Explorer' on the given file,
then Open with... and so on);
it should be possible to set the different browser as the default browser.

I tried,
Mozilla opens and always shows that message.


>"teo" <te*@inwind.ita écrit dans le message de news:
i1********************************@4ax.com...
>Hallo,

I'd like to debug an .aspx page from the IDE
using another browser;
I choose Mozilla Firefox (ver 1.8.1: 2006)

Mozilla starts but the page never opens and an error occurs;
a light yellow page with a message in a red rectangle says:

Errore interpretazione XML: non well-formed
Indirizzo: file///c:/inetpub/wwwroot/...
Line number 1,column 2:
<% Page Language="VB" ....
How to use Mozilla from VS2005 ?
Also trying to open the page from
the IIS management panel in Windows Control Panel
I receive the same error.
Obviously no problem with IExplorer.
Jun 13 '07 #4
No. "Open with" if for opening the file from the hard drive (for example you
could open an image with an image editor or a source code file with a third
party text editor in which case you'll see the server side code).

The option you are looking for is "Browse with..." so that the browser opens
the file *from the website* allowing the page to be processed server side to
return HTML content, rather than trying to display the server side code that
has no meaning for the browser...

---
Patrice

"teo" <te*@inwind.ita écrit dans le message de news:
kj********************************@4ax.com...
On Wed, 13 Jun 2007 16:52:55 +0200, "Patrice"
<http://www.chez.com/scribe/>
wrote:
>>file:// means you try to open directly this file. Browse the *web site* on
which the page is located so that the web site can render the
corresponding
markup instead of having the browser opening the "raw" server side
markup...

Yes,
but accordingly to the Guide,
it should be possible to open a web page with a different browser
directly from the VS2005 IDE
(right-click from 'Solution Explorer' on the given file,
then Open with... and so on);
it should be possible to set the different browser as the default browser.

I tried,
Mozilla opens and always shows that message.


>>"teo" <te*@inwind.ita écrit dans le message de news:
i1********************************@4ax.com...
>>Hallo,

I'd like to debug an .aspx page from the IDE
using another browser;
I choose Mozilla Firefox (ver 1.8.1: 2006)

Mozilla starts but the page never opens and an error occurs;
a light yellow page with a message in a red rectangle says:

Errore interpretazione XML: non well-formed
Indirizzo: file///c:/inetpub/wwwroot/...
Line number 1,column 2:
<% Page Language="VB" ....
How to use Mozilla from VS2005 ?
Also trying to open the page from
the IIS management panel in Windows Control Panel
I receive the same error.
Obviously no problem with IExplorer.

Jun 14 '07 #5
teo
On Thu, 14 Jun 2007 10:17:51 +0200, "Patrice" <http://www.chez.com/scribe/>
wrote:
>No. "Open with" if for opening the file from the hard drive (for example you
could open an image with an image editor or a source code file with a third
party text editor in which case you'll see the server side code).

The option you are looking for is "Browse with..." so that the browser opens
the file *from the website* allowing the page to be processed server side to
return HTML content, rather than trying to display the server side code that
has no meaning for the browser...
You are right, now I got it.

I have a question:

when my page is online
with Windows 2003, Frameworx 2.0, IIS 6.0,
because I have the Tab char in a string,
Mozilla changes the Tab char (it encodes it)

but

the same page launched from the VS2005 IDE
or launched from Htpp.//localhost/....
with Windws XP Pro, Framework 2.0, IIS5.1
Mozilla doesn't changes it

>"teo" <te*@inwind.ita écrit dans le message de news:
kj********************************@4ax.com...
>On Wed, 13 Jun 2007 16:52:55 +0200, "Patrice"
<http://www.chez.com/scribe/>
wrote:
>>>file:// means you try to open directly this file. Browse the *web site* on
which the page is located so that the web site can render the
corresponding
markup instead of having the browser opening the "raw" server side
markup...

Yes,
but accordingly to the Guide,
it should be possible to open a web page with a different browser
directly from the VS2005 IDE
(right-click from 'Solution Explorer' on the given file,
then Open with... and so on);
it should be possible to set the different browser as the default browser.

I tried,
Mozilla opens and always shows that message.


>>>"teo" <te*@inwind.ita écrit dans le message de news:
i1********************************@4ax.com...
Hallo,

I'd like to debug an .aspx page from the IDE
using another browser;
I choose Mozilla Firefox (ver 1.8.1: 2006)

Mozilla starts but the page never opens and an error occurs;
a light yellow page with a message in a red rectangle says:

Errore interpretazione XML: non well-formed
Indirizzo: file///c:/inetpub/wwwroot/...
Line number 1,column 2:
<% Page Language="VB" ....
How to use Mozilla from VS2005 ?
Also trying to open the page from
the IIS management panel in Windows Control Panel
I receive the same error.
Obviously no problem with IExplorer.

Jun 14 '07 #6
As all else looks the same, I would say that this is IIS5.1 or IIS 6.0 that
encodes or not this char. Not sure in which context you are using such a
char (HTML markup, querystring ?). Also Im' not sure whay it should behaves
differently...

Finally the web config also alllows to tell how to encode chars written to
the browser...

Give perhaps some more details...

---
Patrice

"teo" <te*@inwind.ita écrit dans le message de news:
0u********************************@4ax.com...
On Thu, 14 Jun 2007 10:17:51 +0200, "Patrice"
<http://www.chez.com/scribe/>
wrote:
>>No. "Open with" if for opening the file from the hard drive (for example
you
could open an image with an image editor or a source code file with a
third
party text editor in which case you'll see the server side code).

The option you are looking for is "Browse with..." so that the browser
opens
the file *from the website* allowing the page to be processed server side
to
return HTML content, rather than trying to display the server side code
that
has no meaning for the browser...

You are right, now I got it.

I have a question:

when my page is online
with Windows 2003, Frameworx 2.0, IIS 6.0,
because I have the Tab char in a string,
Mozilla changes the Tab char (it encodes it)

but

the same page launched from the VS2005 IDE
or launched from Htpp.//localhost/....
with Windws XP Pro, Framework 2.0, IIS5.1
Mozilla doesn't changes it

>>"teo" <te*@inwind.ita écrit dans le message de news:
kj********************************@4ax.com...
>>On Wed, 13 Jun 2007 16:52:55 +0200, "Patrice"
<http://www.chez.com/scribe/>
wrote:

file:// means you try to open directly this file. Browse the *web site*
on
which the page is located so that the web site can render the
corresponding
markup instead of having the browser opening the "raw" server side
markup...

Yes,
but accordingly to the Guide,
it should be possible to open a web page with a different browser
directly from the VS2005 IDE
(right-click from 'Solution Explorer' on the given file,
then Open with... and so on);
it should be possible to set the different browser as the default
browser.

I tried,
Mozilla opens and always shows that message.



"teo" <te*@inwind.ita écrit dans le message de news:
i1********************************@4ax.com.. .
Hallo,
>
I'd like to debug an .aspx page from the IDE
using another browser;
I choose Mozilla Firefox (ver 1.8.1: 2006)
>
Mozilla starts but the page never opens and an error occurs;
a light yellow page with a message in a red rectangle says:
>
Errore interpretazione XML: non well-formed
Indirizzo: file///c:/inetpub/wwwroot/...
Line number 1,column 2:
<% Page Language="VB" ....
>
>
How to use Mozilla from VS2005 ?
Also trying to open the page from
the IIS management panel in Windows Control Panel
I receive the same error.
>
>
Obviously no problem with IExplorer.
>
>
>


Jun 15 '07 #7
teo
On Fri, 15 Jun 2007 19:00:48 +0200, "Patrice" <http://www.chez.com/scribe/>
wrote:
>As all else looks the same, I would say that this is IIS5.1 or IIS 6.0 that
encodes or not this char.
But with IExplorer and Opera it doesn't happen,
while with mozilla and Netscape it happens
>Not sure in which context you are using such a
char (HTML markup, querystring ?).
I have a listbox:
few items have a Tab because
the item consists of to words and I need to separate these two words.

I read these items during postback with UniqueID,
in this way
myStrVariable = Me.Request.Form(ListBox1.UniqueID)
>Also Im' not sure whay it should behaves
differently...

Finally the web config also alllows to tell how to encode chars written to
the browser...
I have this
globalization responseEncoding="iso-8859-1" requestEncoding="iso-8859-1"
fileEncoding="iso-8859-1"

>---
Patrice

"teo" <te*@inwind.ita écrit dans le message de news:
0u********************************@4ax.com...
>On Thu, 14 Jun 2007 10:17:51 +0200, "Patrice"
<http://www.chez.com/scribe/>
wrote:
>>>No. "Open with" if for opening the file from the hard drive (for example
you
could open an image with an image editor or a source code file with a
third
party text editor in which case you'll see the server side code).

The option you are looking for is "Browse with..." so that the browser
opens
the file *from the website* allowing the page to be processed server side
to
return HTML content, rather than trying to display the server side code
that
has no meaning for the browser...

You are right, now I got it.

I have a question:

when my page is online
with Windows 2003, Frameworx 2.0, IIS 6.0,
because I have the Tab char in a string,
Mozilla changes the Tab char (it encodes it)

but

the same page launched from the VS2005 IDE
or launched from Htpp.//localhost/....
with Windws XP Pro, Framework 2.0, IIS5.1
Mozilla doesn't changes it

>>>"teo" <te*@inwind.ita écrit dans le message de news:
kj********************************@4ax.com...
On Wed, 13 Jun 2007 16:52:55 +0200, "Patrice"
<http://www.chez.com/scribe/>
wrote:

>file:// means you try to open directly this file. Browse the *web site*
>on
>which the page is located so that the web site can render the
>corresponding
>markup instead of having the browser opening the "raw" server side
>markup...

Yes,
but accordingly to the Guide,
it should be possible to open a web page with a different browser
directly from the VS2005 IDE
(right-click from 'Solution Explorer' on the given file,
then Open with... and so on);
it should be possible to set the different browser as the default
browser.

I tried,
Mozilla opens and always shows that message.



>"teo" <te*@inwind.ita écrit dans le message de news:
>i1********************************@4ax.com. ..
>Hallo,
>>
>I'd like to debug an .aspx page from the IDE
>using another browser;
>I choose Mozilla Firefox (ver 1.8.1: 2006)
>>
>Mozilla starts but the page never opens and an error occurs;
>a light yellow page with a message in a red rectangle says:
>>
>Errore interpretazione XML: non well-formed
>Indirizzo: file///c:/inetpub/wwwroot/...
>Line number 1,column 2:
><% Page Language="VB" ....
>>
>>
>How to use Mozilla from VS2005 ?
>Also trying to open the page from
>the IIS management panel in Windows Control Panel
>I receive the same error.
>>
>>
>Obviously no problem with IExplorer.
>>
>>
>>
>

Jun 16 '07 #8

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

Similar topics

8
by: C. Alexander | last post by:
Im running a small server that seems to work fine outside the IDE as an exe, but within the IDE, when I run the program for the first time, i can start/stop the host many times. But I end the...
6
by: Gary Mayor | last post by:
Hi, I'm trying to make it so when I click a image it prints out the image again and a load of other stuff. So far i've got this far. <html> <head> <script language="JavaScript" type="">...
2
by: Lou | last post by:
I have been using .net for about a week now, everything was working fine but now I can't run any projects. I start off by creating a new vb project which automatically adds a new form. If I try to...
1
by: Brian Pembroke | last post by:
When running my program in Vb .Net 2003 on Windows XP, it hangs the IDE everytime. It will run if you choose to run not in debug mode. After further investiagation, this happens in all the...
1
by: Thiago Campos Pereira | last post by:
HI, The IDE hangs with 'Initializing offline cache' during attempt to create a Web Application for C# or VB.net. The IDE hangs until it aborts about 1/2 hour later. I'm using Visual Studio 2003....
7
by: Michael C | last post by:
Hi all, Just started having a problem with the IDE. When I try to 'start' code in the IDE the IDE locks up. It builds and re-builds OK, and I can run the generated EXE outside the IDE, but...
0
by: Joakim | last post by:
Hi, my VC.NET 2003 IDE hangs for hours when compiling my ATL7-project. It seams to compile fine and starts linking. This look OK to. But right before the component registration ("Performing...
2
by: Jeff | last post by:
I have an ASP.NET web page accessing a SQL database. I've used VS to build the app and stored it in the eNPTest02 directory of my localhost on my development machine. The database is on the web. ...
6
by: Bob | last post by:
Even with relatively small, single-project solutions, when I do simple things to my code such as add a carriage return, delete a line, or sometimes even highlight text with the mouse, the IDE hangs...
1
by: cj | last post by:
I usually leave my toolbox on the left side set to autohide. Sometimes if I'm doing a lot with it I want it to remain open. So I move the mouse over it and when it's open I click the tack to keep...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...

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.