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
>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
[quoted text clipped - 4 lines]
>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
>> On Wed, 13 Jun 2007 16:52:55 +0200, "Patrice"
>> <http://www.chez.com/scribe/>
[quoted text clipped - 37 lines]
>>>>
>>>> Obviously no problem with IExplorer.
Patrice - 15 Jun 2007 18:00 GMT
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
> On Thu, 14 Jun 2007 10:17:51 +0200, "Patrice"
> <http://www.chez.com/scribe/>
[quoted text clipped - 73 lines]
>>>>>
>>>>> Obviously no problem with IExplorer.
teo - 16 Jun 2007 20:03 GMT
>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
[quoted text clipped - 76 lines]
>>>>>>
>>>>>> Obviously no problem with IExplorer.