I have an Ajax Form that looks like this:
<% using (Ajax.BeginForm("Update", new AjaxOptions
{ UpdateTargetId = "message", InsertionMode = InsertionMode.Replace,
OnSuccess = "success", OnFailure = "error" })) { %>
I can get "error" to run on a failure but i would like to alert the error message. How can i get this information?
Thanks, Kohan.