I am trying to implement an Ajax.Beginform on my page but when I try to run the code, on postback I get the following alert
htmlfile: Unknown runtime error
I've tried trawling the web for a solution but no joy so far. Seems the problem is caused uite often by having multiple forms on the page but the Ajax form is the only one I have on there. My code is as below
<% Using Ajax.BeginForm("About", New AjaxOptions With {.UpdateTargetId = "divChart"})%>
<input type="submit" value="ChangeChart" />
<div id="divChart">
--Contains html
</div>
<%
End Using%>
Any ideas what could be causing this? Cheers