I've done little html in the past and need to create a simple process. 1 textarea input with a submit button.
I have the page written. It successfully transmits data and a response is returned. The problem is that the input can contain spaces and other special charaters. The app that receives posts converts non-alphanumeric charcters. For example a post of "This is a test" is received as "This+is+a+test".
The text area can contain "CRLF", "?", "<", ">", "*", spaces and more. There charaters come out as hex values.
I don't know java script, vb etc and can't use ASP. Everything but the URL the form posts to will be residing on my desktop.
Any ideas?
page is a simple as
<P><TEXTAREA NAME="name" ROWS="15" COLS="74"></TEXTAREA></P>
<P><INPUT NAME="name" TYPE="submit" VALUE="Submit"></form>
new2game
I have the page written. It successfully transmits data and a response is returned. The problem is that the input can contain spaces and other special charaters. The app that receives posts converts non-alphanumeric charcters. For example a post of "This is a test" is received as "This+is+a+test".
The text area can contain "CRLF", "?", "<", ">", "*", spaces and more. There charaters come out as hex values.
I don't know java script, vb etc and can't use ASP. Everything but the URL the form posts to will be residing on my desktop.
Any ideas?
page is a simple as
<P><TEXTAREA NAME="name" ROWS="15" COLS="74"></TEXTAREA></P>
<P><INPUT NAME="name" TYPE="submit" VALUE="Submit"></form>
new2game