Dir command help? /s attribute keeps seaching full drive?

T

Tim Slattery

Adam said:
Is there a way to create a vote, like a forum where you write your email and
age or whatever and then it sends automaticly to your email?

That would be a server-side process. You'd have to work with your
hoisting company.
 
A

Adam

I'm just making a practis .html start-up page on my browser.
But does anyone know the code for what i'm in need for?
 
G

G. Morgan

Adam said:
I'm just making a practis .html start-up page on my browser.
But does anyone know the code for what i'm in need for?

What have you tried so far?
 
G

G. Morgan

Adam said:
<FORM action="mailto:[email protected]">
Name: <INPUT name="Name" value="" size="10"><BR>
Email: <INPUT name="Email" value="" size="10"><BR>
<CENTER><INPUT type="submit"></CENTER>
</FORM>

That doesn't do what you wanted. You said you wanted the submit button to
load another URL, right?
That was the code i found on: http://web-source.net/html_codes_chart.htm The
side just shows a couple of easy and basic HTML commands theres also
JavaScripts and stuff. Feel free to check it out.

Yeah okay, thanks.
 
T

Tim Slattery

Adam said:
<FORM action="mailto:[email protected]">

First: they want you to replace "(e-mail address removed)" with your email
address. Second: this depends on the user having a properly configured
email program installed. It will popup the user's email program (if
one exists) and he will have to send it. Third: you won't get the
values of name and email.

The only way to do this reliably is with server-side processing. ASP
(IIS only, can be coded in VB Script or Javascript), Perl, or Java EE
or .Net for more complex stuff. Not all hosters allow server-side
processing, it depends on the hoster and on how much you pay.
That was the code i found on: http://web-source.net/html_codes_chart.htm The
side just shows a couple of easy and basic HTML commands theres also
JavaScripts and stuff. Feel free to check it out.

They're showing you how to do client-side stuff, and that's very good.
But forms usually need server-side processing.

All of which is outside the scope of this group.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top