Forms – ASP

ASP Forms

With ASP you can process information gathered by an HTML form and use ASP code to make decisions based off this information to create dynamic web pages.

An ecommerce site could take the user’s information and store it into a database named Customers. This information could then be used to prepopulate the shipping information when the customer is ordering another product.

A forum might save the user’s post to a forum by taking the title and body and saving it to a file so that it can then be called later when someone wants to view it.

Create an HTML Form

Before you can process the information, you need to create an HTML form that will send information to your ASP page. There are two methods for sending data to an ASP form: POST and GET. These two types of sending information are defined in your HTML Form element’s Method attribute. Also, you must specify the location of the ASP web page that will process the information.

Below is a simple form that will send the data using the GET method. Copy and paste this code and save it as as “shareForm.html”.

Source Code:

<form <span style="color: red;">method="GET"</span> action="tuto-rial.asp">
Name <input type="text" name="Name"/>
Age <input type="text" name="Age"/>
<input type="submit" />
</form>

Two Form Examples

The next two lessons will cover how to retrieve this HTML Form information using ASP. The first lesson will be for processing data sent with the GET and the second lesson will cover the details for processing POST data. Please continue on!

Receive the most popular SEOPressor free readily available today, you'll find both free and superior plugins right here. We have actually checked the whole internet, reviewed hundreds of recommended Wordpress plugins and selected the very best.
Get technology science news the latest modern technology updates, consisting of new product releases, sales figures and technician industry efficiency information. Go through information on new gizmos and models for future technology.
local seo tips people need to and should not be doing on your Web pages to make them place higher in online search engine. In a continuously altering SEO landscape, it is important to stay current about the altering techniques and approaches of optimization.
Listed here is a list of tools Manage WordPress in a central location. There are WordPress control panels, as well as multisite tools to manage domains, themes, campaigns, and more. includes one-click accessibility, tracking, backup, implementation, publishing, and security functions. Evaluation which of your sites have styles and plugins that need focus. Along with one click, upgrade all your plugins, styles or center WordPress software application.


My Name is Adi Saputra. I come from Indonesia. I want to develop www.tuto-rial.com Blog Being the best, So much of it as a reference in the world of IT in particular programming

Comments are closed.