Forum: JSP Mar 20th, 2006 |
| Replies: 4 Views: 8,016 You know that getMonth() returns a number. What do your URL's look like?? |
Forum: JSP Jan 11th, 2006 |
| Replies: 1 Views: 1,570 String[] array = request.getParameterValues("paraname"); ? |
Forum: JSP Nov 23rd, 2005 |
| Replies: 3 Views: 1,820 Plus, you haven't asked a question. If you did, I might be able to answer it. |
Forum: JSP Nov 23rd, 2005 |
| Replies: 3 Views: 1,820 Yes, you are lost. This is a JSP forum, not javascript. ;) |
Forum: JSP Aug 5th, 2005 |
| Replies: 3 Views: 2,396 Yes, but he has everything written in C++, so that's why I asked what he wanted done in java. |
Forum: JSP Aug 3rd, 2005 |
| Replies: 3 Views: 2,396 What exactly do you expect from java? |
Forum: JSP Jul 15th, 2005 |
| Replies: 12 Views: 13,257 I'm a little confused here. Lets say this is an upload page were the user enters the path or clicks the browse button, whichever he/she prefers. How exactly do you get that file off their computer... |
Forum: JSP Jul 15th, 2005 |
| Replies: 12 Views: 13,257 Okay, that makes more sense. So basicly it comes down to the popups "blowing up" in the users face, which I've always tried to avoid. I guess you could have both validations as an option to suit... |
Forum: JSP Jul 14th, 2005 |
| Replies: 12 Views: 13,257 Maybe I don't understand the context. Wouldn't it be better in many ways to have a browse button(say the user wants to upload something) even if he/she does know the URL? |
Forum: JSP Jul 13th, 2005 |
| Replies: 12 Views: 13,257 why would you allow the user to enter the path anyway?(not that it's a bad thing) Why can't you use a file browser? |
Forum: JSP Jul 11th, 2005 |
| Replies: 6 Views: 3,050 I'm new to the javascript and html thing. I really don't think it's much fun I'm trying to find use for it. It's hard going from java to something like that :sad:
I believe I will try the... |
Forum: JSP Jul 10th, 2005 |
| Replies: 6 Views: 3,050 Should I use simpler technologies like javascript to do this?
Is there advantages of using cgi type scripts like servlets and jsp as opposed to simple validation with something like javascript? |
Forum: JSP Jul 8th, 2005 |
| Replies: 3 Views: 2,466 I don't think there is a "pretty" way of doing this. You could create a flag in the servlet context object(using a session listener, i think), or you could somehow use a cookie(stupid idea).
I'm... |
Forum: JSP Jun 8th, 2005 |
| Replies: 6 Views: 3,050 I've created an html form that allows the user to login, or register.
Here is what I've thought about(just for the registration page, not login):
HTML FORM --> servlet ---> servlet calls java... |
Forum: JSP Jun 5th, 2005 |
| Replies: 8 Views: 59,425 First of all, you should have some of that in a try-catch clause. That could help you out in figuring out the error. Then, since your using sql, make sure the URL passed to the DriverManager is... |
Forum: JSP May 31st, 2005 |
| Replies: 3 Views: 3,892 I don't know much about starting the j2ee server, but I always thought it was the -verbose command that did it. Am I wrong? |
Forum: JSP Apr 24th, 2005 |
| Replies: 5 Views: 15,212 How many hosts have you tried? I would think you should be able to get a free webhost for that. I could be wrong though. |
Forum: JSP Apr 11th, 2005 |
| Replies: 6 Views: 3,721 Yeah, that's what I thought. I think I'll try it and stick around here to get some extra help if I run into anything difficult. It will be a while before I can start because I won the state... |
Forum: JSP Apr 7th, 2005 |
| Replies: 6 Views: 3,721 I just realized that it's a study guide for the Component developer exam. Maybe that will be a good thing, instead of bad. |
Forum: JSP Apr 5th, 2005 |
| Replies: 6 Views: 3,721 Thanks for the reply. I've got a new book now; it's called "Head first servlets and JSP"...it's by O'Reily and written in a different format than most books, and I'm curious as to how that will go. ... |
Forum: JSP Mar 27th, 2005 |
| Replies: 6 Views: 3,721 I started reading this old book about jsp, and I'm having a few problems getting started. First of all, it says that I need to set these environment variables: Java_HOME, and J2EE_HOME. I don't see... |
Forum: JSP Feb 17th, 2005 |
| Replies: 4 Views: 6,345 I rewrote it, but you really need to work on your conventions: indenting, and naming.
import java.io.*;
public class Slope
{
public static void main(String args [ ]) {
... |