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 2 of 2

Thread: Processing CSS in a Webserver

  1. #1
    Junior Member
    Join Date
    Oct 2011
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Processing CSS in a Webserver

    Hello,

    I have written a 'basic' web server that processes HTML requests. The HTML that I am posting back to the client contains a .css link.
    HTML Code:
    <link href="css/main.css" rel="stylesheet" type="text/css" />
    My server spawns another thread when it sees the request above. I understand that I will have to adjust my code in some way but I am unsure how CSS is supposed to be processed within a web server (how it is all combine into one page that is sent to the client).

    Can anyone point me in the right direction?

    Kind Regards,
    Harold Clements


  2. #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: Processing CSS in a Webserver

    Define processed, because my definition is to layout and display elements within an HTML document - which is done client side and not server side.

Similar Threads

  1. configuration of custom error pages in Webserver level
    By dpkcv in forum JavaServer Pages: JSP & JSTL
    Replies: 0
    Last Post: October 10th, 2011, 04:29 AM
  2. Processing
    By KevinWorkman in forum Other Programming Languages
    Replies: 4
    Last Post: September 6th, 2011, 10:30 AM
  3. Processing Arrays
    By av8 in forum What's Wrong With My Code?
    Replies: 4
    Last Post: June 27th, 2011, 06:19 AM
  4. [PROJECT] JWebby: A brand new webserver
    By Verficon in forum Java Networking
    Replies: 2
    Last Post: March 7th, 2011, 11:49 AM
  5. Signal processing API.
    By ivanloes in forum Java Theory & Questions
    Replies: 4
    Last Post: December 18th, 2010, 05:56 PM