
February 14th, 2005, 09:34 AM
|
|
Registered User
|
|
Join Date: Feb 2005
Posts: 1
Time spent in forums: 26 m 35 sec
Reputation Power: 0
|
|
|
space lost between words
Well... very strange...
Quote:
<input name="to" value="t" type="text" size="10" maxlength="15" /><br/>
<input name="testo" type="text" />
<anchor title="invia">Invia
<go href="<%=sUrlPage%>?do=send" method="get">
<postfield name="from" value="<%=sPseudo%>" />
<postfield name="to" value="$to" />
<postfield name="testo" value="$testo" />
<postfield name="messID" value="<%=id%>" />
<postfield name="userIP" value="<%=sIP%>" />
</go>
</anchor>
|
Posting this by method "get", everything runs OK....
Using "post", I loose spaces between words in "testo" text field...
Any idea???
I need to use "post", of course...
This little form uses an ASP function to write inside a mySQL database and posts have to be visible in a website.
Using "get", my querystring is like "&testo=Hello%20World"
Using "post", probably "%20" is suppressed and my value is "HelloWorld"....
|