Cheap Domains, $1 .COM Websites! - Free .COM (or $1.99) on Many Products!
 
Only Minimal Purchase Req'd on Many Free/$1.99 .COM Offers.    And Our Sale Domains are Often Under $2 or $3/year with No Further Purchase Req'd.
 
Plus, almost ALWAYS 15% OFF Everything Not Already Discounted.    15% OFF Most Renewals too!      New: Business-Growth Website-Builders and Hosting!
 

 *ICANN fee adds 18¢ many domains; tas applies some areas.  Our $1 Website Builder with Free .COM is based on 12 months at $1/mo.   Multipile or "Stacked" discounts in same purchase often disallowed (may require separate transactions).  Click for details.

 
Cheap Domains Cheap Domain Names

  
Use Promo HDX for at least
Cheap .com
that's not already On Sale!*
 

Cheap Domains     $1 Websites     Free USA-based Sales/Support:  (800) 655-5512
 

.COM $7.64 (Promo: HDX) |  .NET $10.19  |  .SITE $2.99  |  .ORG $9.99  |  .INFO $4.99  |  .UK $7.64  |  .EU $6.79

Cheap Domains include FREE:  100 Email Addresses & Account, Full DNS Control, Domain Forwarding, Masking, Registrant-Change/Transfer, Monitoring/Alerts, Locking, Expiration Protection, More!

Cheap Domains - Find Yours Now:    
 
Most prices shown
use Promo Code: HDX.  This search function, and most product pages, display higher prices at first, but don't worry,  Discounts appear in Shopping Cart when Promo Code Entered    details

Free .COM Domains!   ...with many products...  

 $1 Website Instantly     Business Website Builder

 Most cPanel & Plesk Hosting    Some WordPress Packages

$1.99 .COM Domains   ...on much else, often including:

Many Email, Calendar, Storage Plans Powerful SSL Certificates, more!

 
Terms & Conditions Here.  Add a .COM to Cart to verify price if product description not specific.

 

 

 
 

 Cheap Website       Cheap WordPress Hosting        Cheap Website Builder - Easy, Instant!    
Cheap Dedicated Servers       Cheap Virtual Private Servers      
Blogcast and Podcast 

 
Cheap Domains | Availability Check:
 
  

Frequently Asked Questions

Help Center Search

Using Windows Hosting Form Mailers

Print this Article
Last Updated: November 6, 2008 3:36 PM

Two form mailers are included in Windows shared hosting accounts: webformmailer.asp and gdform.php. To use a form mailer, create a Web form in HTML that links to one of our scripts and upload it to your hosting account.

NOTE: As of October 29th, 2008, gdform.asp is no longer offered on Windows shared hosting accounts. Forms using gdform.asp will continue to function provided the file is not deleted.

WARNING: Gdform.asp cannot be recovered if it is deleted.

The form mailers are not installed until you specify the email address you want to use with the form mailer in your account manager. For more information, see Specifying an Email Address for the ASP Form-Mailer.

webformmailer.asp

To Use webformmailer.asp

  1. Create a Web form, assigning unique names to your form fields.
  2. In the form tag, assign _gdForm/webformmailer.asp to the action attribute and set the form method to post:

    <form action="_gdForm/webformmailer.asp" method="post">
  3. In addition to the form fields you create, there are three hidden elements you can use.

    form_format determines in what format the information is delivered. Its values are 'text', 'csv', 'html', 'xml', and 'default' (same as 'text').

    form_order dictates in what order the fields are reported. Its values are 'default' (the same order as they appear on in the form), 'alpha' (alphabetized by field name) or a comma-separated, case-sensitive list of all or some field names.

    form_delivery determines the frequency and packaging of delivery. To receive one email per form submission, the form_delivery values are 'default' (every 15 minutes), 'hourly', and 'daily'. To receive all submissions in an attachment of one email, the form_delivery values are 'digest', 'hourly_digest', and 'daily_digest'.

    For example:

    <form action="_gdForm/webformmailer.asp" method="POST">
    <input type="hidden" name="subject" value="Submission" />
    <input type="hidden" name="redirect" value="thankyou.html" />
    First Name: <input type="text" name="FirstName" />
    Last Name :<input type="text" name="LastName" />
    Email: <input type="text" name="email" />
    Comments: <textarea name="comments" cols="40" rows="10">
    Type comments here.</textarea>
    <input type="submit" name="submit" value="submit"/>
    <input type="hidden" name="form_order" value="alpha"/> <input type="hidden" name="form_delivery" value="hourly"/> <input type="hidden" name="form_format" value="html"/> </form>

NOTE: Webformmailer.asp is accessed through a virtual directory. You cannot modify the file.

gdform.php

To Use gdform.php

  1. Create your Web form as normal and assign unique names to your form items.
  2. NOTE: Keep in mind that our form-mailer script will sort the names of your form items alphabetically when it composes the email message. This is the order of precedence: uppercase letters, lowercase letters, numbers.

  3. For the form action line, enter /gdform.php. For example:
    <form action="/gdform.php" method="post">
  4. Set the form method to "post."
  5. In addition to the fields you create in your form, there are three special fields that you can use: subject, redirect, and email.

    Subject. Controls the subject line in the form email.

    Redirect. Controls the page that your visitors will see after they submit the form.

    Email. Controls the return address for the form email.

    For example:

    <form action="gdform.php" method="post">
    <input type="hidden" name="subject" value="Form Submission" />
    <input type="hidden" name="redirect" value="thankyou.html" />
    <p>First Name:<input type="text" name="FirstName" /></p>
    <p>Last Name:<input type="text" name="LastName" /></p>
    <p>E-Mail:<input type="text" name="email" /></p>
    <p>Comments:<textarea name="comments" cols="40" rows="10">
    Type comments here.</textarea></p>
    <input type="submit" name="submit" value="submit"/>
    </form>
  6. Save and upload your file to your hosting account.

gdform.asp

To Use gdform.asp

  1. Create your Web form as normal and assign unique names to your form items.
  2. NOTE: Keep in mind that our form-mailer script will sort the names of your form items alphabetically when it composes the email message. This is the order of precedence: uppercase letters, lowercase letters, numbers.

  3. For the form action line, enter gdform.asp. For example:
    <form action="gdform.asp" method="post">
  4. Set the form method to "post."
  5. In addition to the fields you create in your form, there are three special fields that you can use: subject, redirect, and email.

    Subject. Controls the subject line in the form email.

    Redirect. Controls the page that your visitors will see after they submit the form. If the page exists off your hosting root, the subdirectory must be specified.

    Email. Controls the return address for the form email.

    For example:

    <form action="gdform.asp" method="post">
    <input type="hidden" name="subject" value="Form Submission" />
    'This example assumes thankyou.html resides in the hosting
    'account root directory.
    'The appropriate path must be supplied if the file
    'exists in a subdirectory.

    <input type="hidden" name="redirect" value="thankyou.html" />
    <p>First Name:<input type="text" name="FirstName" /></p>
    <p>Last Name:<input type="text" name="LastName" /></p>
    <p>E-Mail:<input type="text" name="email" /></p>
    <p>Comments:<textarea name="comments" cols="40" rows="10">
    Type comments here.</textarea></p>
    <input type="submit" name="submit" value="submit"/>
    </form>
  6. Save and upload your file to your hosting account.

NOTE: Your file and GDFORM.ASP need to be placed in the same directory of your hosting account in order for the form to properly function. If the directory in which they reside is off your hosting account root, you must provide the complete confirmation page path in your code.

For information on reinstalling your default scripts, see Reinstalling the Default Scripts Directory on Windows Shared Hosting.

Cheap Domain Names

 


Free USA-Based Technical Support, in English, 24 hours a day, 365 days a year:     (800) 655-5512
 
Call us with any question.     Place Orders by Phone.    Our USA-based Help Desk speaks your language.
 

Call Center located in the Phoenix, Arizona, metropolitan area!   Technical Support also available in Spanish.     New to Us?  Get a free account in 60 seconds.

 

.
 Store Home
   |   My Cart   |   Login   |   FAQ   |   Help   |   Free Telephone Support   |    Products   |    WHOIS Lookup   |   Legal Agreements
 
 

The HostingDude is Crazy Cheap! -- Here's How:

*Compare our Prices Anywhere!  Free Domain Name with purchase of our $1/mo. Website Builder, any Linux or Windows Hosting Plan, Managed Wordpress Hosting, or Quick Shopping Cart products.  $1.99 Domains  require purchase of (almost any) non-domain product we sell, such as Email, Online Fax Number, Group Calendar, SSL Certificates, SEO Traffic Builder, etc. One 1-year Free or $1.99* domain per each new, qualifying non-domain product purchase.

YES, the .COM Domains Qualify!  Free  and $1.99 promotions are on our most popular Domain Names:  .COM, .NET, .ORG, .CO, and frequently on .IN   They're also included on all $1.99 promotions, plus a few extras are included, such as a free .BIZ, .INFO, .ME, .MOBI, .IN, and/or others.  Just add your qualifying purchase and your domain name to your cart, and the domain will price as free or $1.99.

**Free Domain Name Privacy!  Free Private Domain WHOIS Service applies when five or more domain names purchased, or, for fewer than five domains, you'll still get a special low rate of only $1.95 each for Domain Name Privacy.  Private Domain Name Registration available for most Domains.

Save on (almost) Everything!  Enter Promo Code HDX in your Shopping Cart for 15% Off almost anything we sell that's not already on sale.  Some domain pricing shown on the site is based on use of this Promo Code HDX, so be sure to enter it! 

Keep in Mind:  Since some items are on sale at deeper discounts than 15%, your cart may not allow you to mix discount types in the same transaction, but it will always allow you to do so when sale-price items and PromoCode-priced items are purchased separately.  As with everything in life, we might terminate or change these deals at any time, without notice, on all or some products.  But, hey, the HostingDude is crazy about giving you cheap domains!   (ICANN fee of 18 cents [$0.18] may apply on some domain names.)

 

cheap domain names 
 
ICANN fee of 18 cents [$0.18] may apply on some domain names.  Notice for .eu and some other registering inbound
domain transfers: WHOIS may show domain held under registry
Weiled Weast Domains and/or HostingDude.com.

Copyright © 2003 - 2019  HostingDude, Inc.  All Rights Reserved.  No reprint or re-use without written authorization. 



Cheap Domain Names Quick Links...
 
Cheap Domain Names  |  Cheap Website Hosting  |  Domain Name Registration  |  Cheap Hosting  |  Private Domain Name  |  Cheap Website  |  Transfer Domain Name  |  Cheap Web Site  |  Bulk Domain Transfer  |  Cheap Web Site Hosting  |  Spam-Free Email Accounts  |  Cheap Web Hosting  |  Create an Email Account  |  Cheap Website Account  |  Cheapest Website  |  Cheap Web Site  |  Register Domain Names  |  Cheap Web Sites  |  Build a Website  |  Cheap Websites  |  Register Domain Name  |  Cheapest Web Host  |  Create a Website  |  Cheap Website Hosting  |  Domain Name Forwarding  |  Cheap Websites  |  Online Store with Shopping Cart  |  Cheapest Host  |  Web Hosting  |  Cheap Host  |  Domain Name Masking   |  Lowest Price Hosting  |  fax thru email, fax by e-mail   |  Lowest Price Web Hosting  |  Cheap Web Design  |  Cheap Host  |  Free Web Design Tools  |  Lowest Price Website  |  Domain Name Locking  |  Cheapest Hosting  |  Increase Website Traffic  |  Cheapest Site  |  Free Domain Name Software    |  Cheapest Web  |  Send Bulk Email  |  Cheapest Web Host  |  Get a Copyright  |  Cheapest Web Hosting  |  Stop Complaint Sites  |  Cheapest Web Site  |  Block Internet Gripe Sites  |  Cheapest Web Site Hosting  |  Register Copyright  |  Cheapest Web Sites  |  Domain Backorder  |  Cheapest Website  |  Backorder Domain Name  |  Cheap Website Host  |  Get Expired Domain Name  |  Cheapest Website Hosting  |  Make a Website  |  Cheapest Websites  |  Free Domain Name  |  Lowest Price Website Hosting  |  Free Domain Name Software  |  Lowest Price Websites  |  Secure SSL Certificate  |  Lowest Cost Host  |  Send Bulk Email  |  Lowest Cost Hosting  |  PayPal Payments for Domain Names and Hosting  |  Lowest Cost Web Hosting  |  Build an Online Store with Shopping Cart  |  Lowest Cost Websites  |  Accept Credit Cards  |  Lowest Cost Web Sites  |  Shopping Cart Site   |  Help Center   |  Help   |  FAQ