| Author |
use JSlider (SWING)
|
Peter Tilm
Greenhorn
Joined: Jun 10, 2003
Posts: 7
|
|
Hello, i'm rather new to JSP/Servlet. Is it possible to use SWING components like JSlider or progress bars in web-applications using JSP/Servlets? thanks for advice
|
 |
Chris Baron
Ranch Hand
Joined: Mar 21, 2003
Posts: 1049
|
|
|
No, not in JSP/Servlet, they "write" HTML.
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56214
|
|
Hi Peter, Welcome to the Ranch! As Chris pointed out, with JSP and Servlets, the Java component executes on the server in order to format whatever will be sent to the client. No Java executes on the client to control the interface. (For that, you're still stuck with applets). Think of JSP as a dynamic templating language to create HTML pages. hth, bear
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: use JSlider (SWING)
|
|
|