I've always viewed my ASP pages, which uses VB-Script, on Internet Explorer. I was wondering whether these ASP pages would work on Netscape Navigator ?
Printable View
I've always viewed my ASP pages, which uses VB-Script, on Internet Explorer. I was wondering whether these ASP pages would work on Netscape Navigator ?
As long as the vbscript occurs within the ASP tags like this
The pages should render the same. The reason is that the script inside of the tags are being rendered by the server, not the users browser. However, if you are using any vbscript functions outside of these tags, then I would think about converting them to netscape, or restructuring your site to use php if it is available to you.Code:<%
vbscript here
%>
Hope this helps.
Yeah, just to add to what reeset wrote...
Make sure that you use JavaScript for any Client-Side processing and...
for Netscape controls such as buttons and radio buttons etc HAVE to be inside <FORM></FORM> tags (IE doesn't care)
make sure you close <table> s with </table> or else nothing will be displayed (IE doesn't care about that either!)
You should test your finished pages in as many diffent browsers as possible.
Sizing of contols and positioning of items on a page can differ greatly between IE and Netscape
[Edited by Mark Sreeves on 10-10-2000 at 03:37 AM]