asp.net mvc - jquery file uplaod form plugin response issue -


I have found the form plugin interesting and I want to know how to do ajax response in html text field in asp.net mvc 2. Can anyone embed any thoughts?

Here is the link to that control

You can use the success callback Which will apply once the ajax request is successful and updated on the content of your texteries:

  $ ('# myForm'). Ajaxform ({success: function (results) {$ ('# TxtArea'). Val (results);}});  

Comments