DigiOz Post To Web Form Version 1.0.0 (for .NET 2.0)
====================================================

DLL Name: digiozposttowebform.dll
Purpose:  to allow a Windows GUI application to post information to any web form 
	  on any website given the remote website URL and all the form fields 
	  and their respective values.

How to Use it
=============

1- Start a new VB.NET Windows Application Solution.

2- Open the "Solution Explorer" window.

3- Right-Click on References Folder inside of Solution Explorer for your project.

4- Select "Add Reference" from the menu given. 

5- Click on the "Projects" Tab, and click on "Browse" button.

6- Find the digiozposttowebform.dll file from the location you downloaded and 
   saved it to, select it and hit Open.

Sample usage of this DLL:
=========================
Dim wf1 As New digioz.PostToWebForm
Dim sResult As String

wf1.postURL = "http://www.digioz.com/scripts/posttest.php"

' --------------- field name , value ---------------------
wf1.addNewFields("username", "username")
wf1.addNewFields("password", "password")
' --------------------------------------------------------

sResult = wf1.postForm()

Console.WriteLine(sResult)
Console.ReadLine()






