---URGENT---
Hai,
I wrote a code :
<html>
<body>
<%response.write "<form action=http://localhost/rentry.asp?tid="& request("tid") &">"%>
<textarea name="treply" rows="10" cols="100">Enter ur text here</textarea>
<input type="Reset" name="subFThread" value="Reset">
<input type="submit" name="subFThread" value="Post">
</form>
</body>
</html>
Here i wanted to send a piece of data (tid, that i extract from the earlier asp window using Request) value along with treply to the next asp file so that it can process that data. But when i click the submit button, it does not send that data to the next window.
Instead it sends this :
http://localhost/computer_workshop/tt/rentry.asp?treply=text+data+being+passed&subFThread=Post
via the address bar, whereas i wanted it to send
http://localhost/rentry.asp?tid=24&treply=text+data+being+passed&subFThread=Post
How to achieve this???
Please help me, Thanks in advance.