halstrom
Mar 3rd, 2003, 01:48 PM
:rolleyes:
Hi all,
I downloaded Netscape 7.02 just to see what my web pages would look like in their product (I'm an IE fan... dread using Netscape).
First, the un-goodie.
By default, Netscape 7.02 installs showing its "Modern" interface (they call it a theme). Unfortunately, the "Modern" interface does not adhere to the standard vertical scrollbar width.
So. If you're using any kind of a graphical interface for your pages, taking into account the vertical scrollbar width, so that your graphics end flush against the scrollbar on an 800x600 display, you now have a Netscaped web page, showing a thin streak the color of your web page background along the right edge.
Now the warning.
The Netscape 7.02 "Modern" interface defaults to extreme security options for Web Forms (all ASP.NET pages, that is) and does not treat the ASP:IMAGEBUTTON control kindly.
A click on an ASP:IMAGEBUTTON used to process links at the server (server-side image map) or as an ADD-TO-CART button yields the following Netscape warning:
"The information you have entered is to be sent over an unencrypted connection and could easily be read by a third party. Are you sure you want to continue sending this information?"
Place yourself in the shoes of a Web surfer who's just come to your website and is not well-versed in web programming. At the time of the click, the Web surfer has not "ENTERED" any information, and yet he/she is getting a message about information being sent which could easily be read by others.
Seems to me that the most likely conclusion the visitor will reach is that somehow your website is skulking about his/her computer and gathering private information and is about to transmit it. Not exactly a desirable conclusion, especially when running an E-Commerce site where trust means everything.
I've only tried it with ASP:IMAGEBUTTONS, so someone should test it with other web controls-- all web controls are part of a form...
At this point, I would venture a guess that it applies to other form elements as well. Why do I say that without testing other controls? It's been my experience that Netscape = expect surprises (not all of them pleasant).
What they're trying to do is warn the Web surfer that SSL is not being used. Unfortunately, the way they've gone about doing it could end up undermining a lot of .NET coding.
Perhaps this is their way of discouraging .NET development?
What they should have done is check for which kind of form element was being used. If a textbox or a text area, where actual information has been entered, and SSL is not being used. then by all means fire a warning. But it appears to me that their code only checks if a Form is being used and a Submit button has been clicked. Since an ASP:IMAGEBUTTON is rendered to the browser as an IMAGE INPUT tag-- you get a warning.
Thanks to Netscape's latest, I'm back to Client-Side Image Maps and straight <A Href="etc"><IMG SRC="etc" etc></A>
Don't you love it when people you've never met force you to program your pages "their" way?
Bottom line: be careful with how Netscape 7.02 treats your ASP:IMAGEBUTTONS, specially with E-Commerce sites.
:rolleyes:
Hi all,
I downloaded Netscape 7.02 just to see what my web pages would look like in their product (I'm an IE fan... dread using Netscape).
First, the un-goodie.
By default, Netscape 7.02 installs showing its "Modern" interface (they call it a theme). Unfortunately, the "Modern" interface does not adhere to the standard vertical scrollbar width.
So. If you're using any kind of a graphical interface for your pages, taking into account the vertical scrollbar width, so that your graphics end flush against the scrollbar on an 800x600 display, you now have a Netscaped web page, showing a thin streak the color of your web page background along the right edge.
Now the warning.
The Netscape 7.02 "Modern" interface defaults to extreme security options for Web Forms (all ASP.NET pages, that is) and does not treat the ASP:IMAGEBUTTON control kindly.
A click on an ASP:IMAGEBUTTON used to process links at the server (server-side image map) or as an ADD-TO-CART button yields the following Netscape warning:
"The information you have entered is to be sent over an unencrypted connection and could easily be read by a third party. Are you sure you want to continue sending this information?"
Place yourself in the shoes of a Web surfer who's just come to your website and is not well-versed in web programming. At the time of the click, the Web surfer has not "ENTERED" any information, and yet he/she is getting a message about information being sent which could easily be read by others.
Seems to me that the most likely conclusion the visitor will reach is that somehow your website is skulking about his/her computer and gathering private information and is about to transmit it. Not exactly a desirable conclusion, especially when running an E-Commerce site where trust means everything.
I've only tried it with ASP:IMAGEBUTTONS, so someone should test it with other web controls-- all web controls are part of a form...
At this point, I would venture a guess that it applies to other form elements as well. Why do I say that without testing other controls? It's been my experience that Netscape = expect surprises (not all of them pleasant).
What they're trying to do is warn the Web surfer that SSL is not being used. Unfortunately, the way they've gone about doing it could end up undermining a lot of .NET coding.
Perhaps this is their way of discouraging .NET development?
What they should have done is check for which kind of form element was being used. If a textbox or a text area, where actual information has been entered, and SSL is not being used. then by all means fire a warning. But it appears to me that their code only checks if a Form is being used and a Submit button has been clicked. Since an ASP:IMAGEBUTTON is rendered to the browser as an IMAGE INPUT tag-- you get a warning.
Thanks to Netscape's latest, I'm back to Client-Side Image Maps and straight <A Href="etc"><IMG SRC="etc" etc></A>
Don't you love it when people you've never met force you to program your pages "their" way?
Bottom line: be careful with how Netscape 7.02 treats your ASP:IMAGEBUTTONS, specially with E-Commerce sites.
:rolleyes: