README.md
December 4, 2022 ยท View on GitHub
Description
send email. Feell free to give comments. Please vote for me thanks
More Info
sends email
| Submitted On | |
| By | Priscilla Khoo |
| Level | Beginner |
| User Rating | 3.0 (6 globes from 2 users) |
| Compatibility | VbScript (browser/client side) |
Category |Controls/ Forms/ Dialogs/ Menus World |ASP / VbScript Archive File |
Source Code
<html>
<head>
/* Done by Priscilla Khoo */
<title>User Information!</title>
<script language = "VBScript">
<!--
Sub cmdSubmit_onClick
' Submit this form for processing.
MsgBox "Your form has been submitted."
Document.frmUserInformation.Submit
End Sub
-->
</script>
</head>
<body>
<h1> User Information!</h1>
<Form Name = "frmUserInformation" Action = "MAILTO:yupi_girl@hotmail.com" Method = "post" enctype = "text/plain" >
<table>
<tr>
<td><b>User Name:</b></td>
<td><Input Type = "Text" Name = "txtUserName" Size = 20></td>
</tr>
<tr>
<td><b>Email ID:</b></td>
<td><Input Type = "Text" Name = "txtEmailID" Size = 20></td>
</tr>
<tr>
<td><b>Address:</b></td>
<td><input Type = "Text" Name = "txtAddress" size = 20></td>
</tr>
<tr>
<td><b>Mobile No:</b></td>
<td><Input Type = "Text" Name = "txtMobileNo" Size = 20></td>
</tr>
<tr>
<td><INPUT TYPE="Submit" NAME="cmdSubmit" VALUE="Submit"></td>
</tr>
</table>
</Form>
</body>
</html>