| | |
Building asp form
Please support our ASP advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
•
•
Join Date: Jan 2009
Posts: 2
Reputation:
Solved Threads: 0
Hi I am just a student doing survey
about Employers helping empolyees
with their housing during this recession
and I need helps to make this ASP form....
anyone willing & able to help me out?
===========================================
My -survey.html- File for getting the info
===========================================
====================================================================
my -- sProcess.asp- file for processing & sending my survey
====================================================================
about Employers helping empolyees
with their housing during this recession
and I need helps to make this ASP form....
anyone willing & able to help me out?
===========================================
My -survey.html- File for getting the info
===========================================
html Syntax (Toggle Plain Text)
<html><head><title>Survey</title></head> <body><form method=post action="sProcess.asp"> <pre><input type="radio" name="Status" value="HR Manager">I am an HR Manager <input type="radio" name="Status" value="Untitled Hiring Manager">I am an Untitled Hiring Manager FIRST name <input type="text" 1stname="name" size="20" name="FirstName"> <textarea name="SayAnyThing" rows=5 cols=40 wrap></textarea> <input type="submit" value="submit my survey"><input type="reset" value="Start Over"></pre> </form></body> </html>
my -- sProcess.asp- file for processing & sending my survey
====================================================================
asp Syntax (Toggle Plain Text)
<html><head><title>sprocess</title></head> <body> <% '=== BEGIN send survey Set ObjMsg = Server.CreateObject("CDONTS.NewMail") ObjMsg.From = "WebMaster@JeanBiz.info" ObjMsg.To = "ComfortedAlways@aol.com" ObjMsg.Subject = "Survey" ObjMsg.Body = "Survey"&vbCrlf&_ "==========================================="&vbCrlf&_ "status = " &rtrim(Request.Form("Status""))"&vbCrlf&_ "first name = " &rtrim(Request.Form("FirstName""))"&vbCrlf&_ "say any thing = " &rtrim(Request.Form("SayAnyThing"")) ObjMsg.Importance = 1 ObjMsg.Send Set ObjMsg = Nothing '=== END send survey Response.Write "Thanks for answering this survey<br>"&_ %> </body> </html>
Last edited by peter_budo; Jan 25th, 2009 at 4:26 am. Reason: Keep It Organized - For easy readability, always wrap programming code within posts in [code] (code blocks) and [icode] (inline code) tags.
![]() |
Similar Threads
- Updated : Simple ASP.Net Login Page (ASP.NET)
- Tutorial: Understanding ASP classes (ASP)
- need help building radio buttons in a dynamic asp form (ASP.NET)
- request.form is not working in asp.net (ASP.NET)
- Building DLL from .LIB & .H (C++)
- ASP.NET and Mozilla - Issues! (ASP.NET)
- looking at building a pc - read this first (Motherboards, CPUs and RAM)
Other Threads in the ASP Forum
- Previous Thread: ASP Form
- Next Thread: Timeout expired
| Thread Tools | Search this Thread |
archive asp asp.net aspandmssqlserver2005 aspandmssqlserver2005connection aspconnection connection database databaseconnection dreamweaver excel fso iis msmsql mssql2005 mssqlserver2005 mssqlserver2005andasp mssqlserverandasp opentextfile record searchbox selectoption single specfic sqlserver sqlserverconnection windows7





