re:
Ive been studying this tutorial / example and am trying to get it to work (i.e. 'catch' the edited text (textarea) at the 'save_URL' to then be able to do something with it like writ it to a database, etc. -- for now I'd be happy if I could just response.write it out and have it displayed)...
... but when I try to access the text that is supposed to be 'passed' to the subsequent page using any of the following, the string is empty:
... in PHP I understand its as simple as
how can I 'retrieve' / access the content using vb / asp?
Thanks!
Ive been studying this tutorial / example and am trying to get it to work (i.e. 'catch' the edited text (textarea) at the 'save_URL' to then be able to do something with it like writ it to a database, etc. -- for now I'd be happy if I could just response.write it out and have it displayed)...
... but when I try to access the text that is supposed to be 'passed' to the subsequent page using any of the following, the string is empty:
Code:
request.form("bigedit")
request.querystring("bigedit")
request.querystring
... in PHP I understand its as simple as
Code:
$the_name = htmlspecialchars($_GET['greeting-name']);
how can I 'retrieve' / access the content using vb / asp?
Thanks!