views:

49

answers:

0

Hi, that's all in the title.

I've got a Curriculum Vitae form which has a textarea using TinyMCE and a file upload input, and the script is in classic ASP.

    <script language="javascript" type="text/javascript">
 tinyMCE.init({
 mode : "textareas",
 theme : "simple" });
 </script>

 <textarea name="messaggio"
 id="messaggio"></textarea>

Beacuse of I use the enctype="multipart/form-data" of the form doesnt allow the classic Request.Form I have to use the UploadRequest.Item("messaggio").Item("Value")

But the TinyMCE script doesn't allow to retrieve the value of the textarea.

Why?

Thanks Daniele