This topic is locked

Pass varible via hyperlink

4/4/2004 10:51:09 PM
ASPRunnerPro General questions
author

Is there away to pass the contents of a textarea to a new page for wysiwyg editing via a hyperlink on the edit page?
The same manner that images are changed / edited
I would like to pass the htmlarea of a field to a new page -

Example: format.asp to allow foramting via wysiwyg textarea and then save changes.
Thanks,

Scott
Love the product...

Sergey Kornilov admin 4/12/2004

Scott,
here is the sample code that passes data via a hyperlink.

<a href=format.asp?param=<%=rsData.Fields(textfield)%>>Edit</a>


To retrieve parameter value use Request.QueryString("param") on the format.asp page.