-
urgent
Form with one text box and a submit button.
The form loads another page which loads the information from the text box(COnveryted it into HTML) into HTML file which stores the file on the server and the name nad link of that file will come on the page?
-
Please stop posting the same thing over and over with 'urgent'. If it was really 'urgent', you should be on MSDN figuring out how to do it.
What you have to do is convert the text data yourself to HTML. (i.e. you have to parse it for vbCr and vbCrLf replace them with <BR>.
Then you will need to use the filesystemobject to save the file to disk. You also have to play with the settings on directory security because by default the user is not able to write to web directories. (And the application will most likely be using the built in account for IIS to do these operations).
You will need a consistent way to generate filenames. A database that feeds the name with a numeric value and auto-increments would work.