| | |
I'm new with ASP, so I would love to get some help here.
Please support our ASP advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
•
•
Join Date: Oct 2006
Posts: 14
Reputation:
Solved Threads: 0
Hello.
I want to make forms in ASP (login and contact forms)
Let's start with the contact page: (where the form is)
(is this right, and am I gonna call it for example; contact.html or contact.asp?
And what I wonder now, is what am I gonna have in the thanks.asp file. Anyone who knows?
And if you don't mind, can you help me with a login form too?
And a final question.
- Do I need anything to make ASP? (If I do, where can I get it)
Anders
I want to make forms in ASP (login and contact forms)
Let's start with the contact page: (where the form is)
(is this right, and am I gonna call it for example; contact.html or contact.asp?
html Syntax (Toggle Plain Text)
<html> <head> <title>Hope you can help me...</title> </head> <body> <form action="thanks.asp"> Name: <input type="text"> E-Mail: <input type="text"> <input type="submit" value="Submit"> </form> </body> </html>
And what I wonder now, is what am I gonna have in the thanks.asp file. Anyone who knows?
And if you don't mind, can you help me with a login form too?
And a final question.
- Do I need anything to make ASP? (If I do, where can I get it)
Anders
•
•
Join Date: Dec 2006
Posts: 4
Reputation:
Solved Threads: 0
HI Anders.
To run ASP you need IIS4, IIS5, IIS6 or .NOT framework. IIS comes with MIcrosoft windows 200 and XP pro etc...
Here is some code to show some basic data capture, simple copy and paste into an .asp page
To run ASP you need IIS4, IIS5, IIS6 or .NOT framework. IIS comes with MIcrosoft windows 200 and XP pro etc...
Here is some code to show some basic data capture, simple copy and paste into an .asp page
asp Syntax (Toggle Plain Text)
<% ' check to see if the form has been submitted if len(request.form("go")) then ' write out results response.write "<p>You submitted the following details</p>" response.write request.form("name") & "<br/>" response.write request.form("email") end if %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[url]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd[/url]"> <html xmlns="[url]http://www.w3.org/1999/xhtml[/url]"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> </head> <body> <form id="form1" name="form1" method="post" action=""> <input type="hidden" name="go" value="yes" /> <label>name <input type="text" name="name" /> </label> <p> <label>email <input type="text" name="email" /> </label> </p> <p> <label> <input type="submit" name="Submit" value="Submit" /> </label> </p> </form> </body> </html>
•
•
Join Date: Dec 2006
Posts: 4
Reputation:
Solved Threads: 0
apologies for my last quote, Didnt come out as I intended
HI Anders.
To run ASP you need IIS4, IIS5, IIS6 or .NET framework. IIS comes with Microsoft windows 2000 and XP pro etc...
Here is some code to show some basic data capture, simple copy and paste into your .asp page and run it
HI Anders.
To run ASP you need IIS4, IIS5, IIS6 or .NET framework. IIS comes with Microsoft windows 2000 and XP pro etc...
Here is some code to show some basic data capture, simple copy and paste into your .asp page and run it
asp Syntax (Toggle Plain Text)
<% ' check to see if the form has been submitted if len(request.form("go")) then ' write out results response.write "<p>You submitted the following details</p>" response.write request.form("name") & "<br/>" response.write request.form("email") end if %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[url]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd[/url]"> <html xmlns="[url]http://www.w3.org/1999/xhtml[/url]"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> </head> <body> <form id="form1" name="form1" method="post" action=""> <input type="hidden" name="go" value="yes" /> <label>name <input type="text" name="name" /> </label> <p> <label>email <input type="text" name="email" /> </label> </p> <p> <label> <input type="submit" name="Submit" value="Submit" /> </label> </p> </form> </body> </html>
![]() |
Similar Threads
- Simple ASP.Net Login Page using C# (C#)
- Create Forums in ASP .NET (ASP.NET)
- Freelance Web designer PHP, MySQL, ASP, SQL Server 2000 (Post your Resume)
- vBulletin to ASP.NET (PHP)
- Diplaying Excel Spread aheets online (ASP.NET)
- Freelance Web designer PHP, MySQL, ASP, SQL Server 2000 (Web Development Job Offers)
- PHP, ASP, ColdFusion, what's your fav? (IT Professionals' Lounge)
- do u advice me to do my online store using ASP or PHP (IT Professionals' Lounge)
- Simple ASP.Net Login Page (Using VB.Net) (ASP.NET)
Other Threads in the ASP Forum
- Previous Thread: Logon system and modifing
- Next Thread: Turn text into clickable links
| Thread Tools | Search this Thread |
archive asp asp.net aspandmssqlserver2005 aspandmssqlserver2005connection aspconnection connection database databaseconnection diagnostics dreamweaver excel fso iis microsoft msmsql mssql2005 mssqlserver2005 mssqlserver2005andasp mssqlserverandasp opentextfile record searchbox selectoption server single specfic sqlserver sqlserverconnection toolkit webserver windows7





