Free Web Site Resources

Adding a Hit Counter
There are many free hit counters available one of the best is Web Site Garages Hitometer free service.

Hitometer offers a complete tracking and reporting system to help you understand your Web site traffic. The free Hitometer service offers an extensive choice of counters, and reporting of URL statistics.
 


Adding a Mail Form
The servers support W3 Jmail 3.7 which is a great ASP script for sending mail from web pages. It is extremely easy to setup. Just copy 2 files (the jmail webform.htm and jsend.asp), modify as required, and add them to your directory.

Jmail supports sending any field on your html form to your ecosse.net address using the form method:
<form method="post" action="jsend.asp">
It also includes the ability to add a custom confirmations in the jsend.asp file.

Example jmail webform.htm

Copy and save as an html file and then make any field and formatting modifications you wish.

<html>
<head>
<title>jmail sample webform</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF">
<form method="post" action="jsend.asp">
<table width="100%" border="0">
<tr>
<td>Name:</td>
<td>
<input name="name" type="text">
</td>
</tr>
<tr>
<td>Email:</td>
<td>
<input name="email" type="text">
</td>
</tr>
<tr>
<td>Company:</td>
<td>
<input name="company" type="text">
</td>
</tr>
<tr>
<td valign="top">Address:</td>
<td>
<textarea name="address" cols="50" rows="4"></textarea>
</td>
</tr>
<tr>
<td valign="top">Comments:</td>
<td>
<textarea name="comments" rows="6" cols="50"></textarea>
</td>
</tr>
<tr>
<td valign="top">&nbsp;</td>
<td>
<div align="right">
<input type="submit" value="Send" name="submit">
</div>
</td>
</tr>
</table>
</form>
</body>
</html>
The jsend.asp file
Copy and paste the following into a text editor,change the items in yellow text and save the file as jsend.asp
<html>
<head>
<title>Confirmation</title>
</head>
<body bgcolor="#FFFFFF">
<%
Set JMail = Server.CreateObject("JMail.SMTPMail")
JMail.Silent = true
JMail.Logging = true

JMail.ServerAddress = "mail.ecosse.net"
JMail.Sender = "webforms@sites.ecosse.net"
JMail.Subject = "Sample Fail Form"
JMail.AddRecipient "yourname@ecosse.net"
JMail.Priority = 1
JMail.body = "The form was filled out with the following values:" & vbcrlf
Dim el
'add every form element and its value to the email
FOR EACH el IN Request.Form
JMail.appendtext( el & ": " & Request.form(el) & vbcrlf )
NEXT
' Send it...
JMail.Execute
%>
<center>
<!-- Add any text or graphics you wish to appear on the confirmation page
after this point --> Example:Your email has been sent to:yourname@ecosse.net<BR>
Thanks for contacting us.</center>
</body>
</html>