Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 4 of 4

Thread: loading jsp pages in different browsers

  1. #1
    Junior Member
    Join Date
    Dec 2010
    Posts
    1
    Thanks
    0
    Thanked 1 Time in 1 Post

    Post loading jsp pages in different browsers

    Hi,

    when loading the jsp pages in mozilla & google chrome at time it is coming but in IE8 the time taking to load the page is slight differene but look is not good like parts wise it is loading. i think it is browser related issue. Can anyone please help me on this. Do i need to change any settings in the browser or any code i need to add related to browser.

    Regards
    Sridevi

  2. The Following User Says Thank You to sridevi karampudi For This Useful Post:

    ineedhelp (July 1st, 2011)


  3. #2
    Administrator copeg's Avatar
    Join Date
    Oct 2009
    Location
    US
    Posts
    5,320
    Thanks
    181
    Thanked 833 Times in 772 Posts
    Blog Entries
    5

    Default Re: loading jsp pages in different browsers

    jsp is server side, so would have nothing to do with the browser. However, the html/css/javascript that the jsp spits out would. In my experience, Explorer is one of the more misbehaved browsers, and typically requires debugging the html/css to get things to display correctly.

  4. The Following User Says Thank You to copeg For This Useful Post:

    ineedhelp (July 1st, 2011)

  5. #3
    Super Moderator Json's Avatar
    Join Date
    Jul 2009
    Location
    Warrington, United Kingdom
    Posts
    1,274
    My Mood
    Happy
    Thanks
    70
    Thanked 156 Times in 152 Posts

    Default Re: loading jsp pages in different browsers

    Yeah indeed, all the way up to and including IE version 8 you will have issues if you try using more advanced markup and CSS. Most modern browsers today follow the W3C spec when it comes to parsing and rendering the HTML but IE does not, unfortunately this means that developer have to conform to both the W3C standard and try to make little hacks to make it work in IE as well.

    You will have to google this because it's a massive topic but hopefully as IE9 hits release state we'll see some improvements.

    // Json

  6. The Following User Says Thank You to Json For This Useful Post:

    ineedhelp (July 1st, 2011)

  7. #4
    Junior Member
    Join Date
    Feb 2013
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: loading jsp pages in different browsers

    don't use meta refresh, but use a real redirect or a forward (and that shouldn't be done in a JSP, but in a controller, filter or servlet).

Similar Threads

  1. I don’t want my pages to be shown in the history at all.
    By jaisingh in forum JavaServer Pages: JSP & JSTL
    Replies: 0
    Last Post: November 17th, 2010, 05:13 AM
  2. URLs in browsers
    By subhvi in forum Java Networking
    Replies: 3
    Last Post: October 8th, 2010, 03:06 AM
  3. Loading Images and Edit it
    By shadihrr in forum Java Theory & Questions
    Replies: 1
    Last Post: March 25th, 2010, 08:39 PM
  4. Loading in images
    By eXcellion in forum Java Theory & Questions
    Replies: 3
    Last Post: January 17th, 2010, 12:13 PM
  5. How to Hyper-link pages together in Java?
    By don.java1 in forum Java Applets
    Replies: 5
    Last Post: July 21st, 2008, 05:09 AM

Tags for this Thread