Is a server side script necessary to process a form?
Posted
by jitendra
on Stack Overflow
See other posts from Stack Overflow
or by jitendra
Published on 2010-03-16T03:35:59Z
Indexed on
2010/03/16
11:36 UTC
Read the original article
Hit count: 171
Is a server side script necessary to send a form to email?
For example, suppose I want to submit this form. Is it only possible with php asp.net etc. or it can be done with javascript only?
<HTML>
<HEAD>
<TITLE>HTML form tutorial example</TITLE>
</HEAD>
<BODY>
<H1>HTML form tutorial example</H1>
<FORM>
Name: <INPUT TYPE="TEXT" NAME="Name" VALUE="" SIZE="25" MAXLENGTH="50"> <BR>
Email: <INPUT TYPE="TEXT" NAME="Email" VALUE="" SIZE="25" MAXLENGTH="50"><BR>
<INPUT TYPE="SUBMIT" NAME="submit" VALUE="Sign Me Up!">
</FORM>
</BODY>
</HTML>
© Stack Overflow or respective owner