Results 1 to 3 of 3

Thread: View ASP pages in Netscape

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Aug 2000
    Posts
    117
    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 ?

  2. #2
    Hyperactive Member
    Join Date
    May 2000
    Location
    Or
    Posts
    316
    As long as the vbscript occurs within the ASP tags like this
    Code:
     <%
       vbscript here
     %>
    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.

    Hope this helps.

  3. #3
    Frenzied Member Mark Sreeves's Avatar
    Join Date
    Nov 1999
    Location
    UK
    Posts
    1,845
    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]
    Mark
    -------------------

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width