Jeditable & ASP,我在处理页面上看不到 POST 值

Jeditable & ASP, I can't see POST values on processing page

我正在使用 Jeditable,我在本地主机上工作(不知道这是否重要),我看不到发送到 AJAX 页面的任何值。

JS代码:

 $('.editable').editable('/mypage.asp?act=update-profile', {
             type      : 'textarea',
             cancel    : 'Cancel',
             submit    : 'OK',
             indicator : '<img src="img/indicator.gif">',
             tooltip   : 'Click to edit...'
         });

HTML

<p class="editable" id="testo_it">Some text here</p>

mypage.asp

        <%
    testo_it    = Request.form("testo_it")

response.write testo_it
    %>

变量"testo_it"为空!

有什么建议吗? 谢谢

From the documentation:

When submitting change following data will be POST:ed to server:

id=elements_id&value=user_edited_content

因此您需要获取的值为:

Request.Form("value")