Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: Java Fillout Form

  1. #1
    Join Date
    Jul 2005
    Location
    Fulton, MO
    Posts
    19
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Java Fillout Form

    Is there any way to use Java to make a form people can fill out information about themselves, for use as an Admin Application form, that will accept their information and either email it to me, or save it somewhere I can find it? Like an Application form....Thanks- Lee

  2. #2
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Not without the aid of a server-side script, no. I'm going to assume you're talking about Javascript, not Java. If you do mean a Java servlet or applet, you've posted in totally the wrong place.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  3. #3
    Join Date
    Aug 2005
    Posts
    971
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Twey: We don't have a java forum you remember??
    Ubernoober: You can post java related question in the forum called other. As Twey's old signature said "Java is not Javascript".

  4. #4
    Join Date
    Jul 2005
    Location
    Fulton, MO
    Posts
    19
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Not being sarcastic or malicious, I just don't have any idea what I am looking for, aside from what I need it to do. I've seen almost every thing in the library is javascript, and just thought I'd ask. Just looking for a little advice/Hints to point me in the right direction.

  5. #5
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Er, well, that doesn't really answer anything.

    Do you mean Java or don't you?
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  6. #6
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    Javascript only affects things on a loaded page. It can't store info, send it, or anything like that. (With a few small exceptions)


    PHP, or another server side language, will open up the options of storing the data from a form, reopening it, reviewing it, then sending to whatever. You can use a database, text files on the server, cookies where applicable (likely not in this case), and an email function.



    The java question is valid, though, because it may be possible with java applets. It sounds like you meant javascript, so I'll assume you do.
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  7. #7
    Join Date
    Jul 2006
    Posts
    22
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    with not but a working smtp server you could use this. http://www.io.com/~maus/JavaPage.html

    but it would be easier to use a web host with front page and just add a feedback form.

    well anyway. why not just use a mail to?

    Code:
    <A HREF="mailto:email@domain.com?
        subject=Feedback&amp;
        body="First name: Last name: Address: Phone: E-mail:..."</A>

  8. #8
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    mailto's are annoying, and quite incompatible, but much easier... so... good/bad...
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  9. #9
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    You'll want to put a > in there somewhere too.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  10. #10
    Join Date
    Jul 2006
    Posts
    22
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    o oop's.

Bookmarks

Posting Permissions

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