How to pass server-side error messages to ASP.NET Ajax client? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T11:11:36Zhttp://stackoverflow.com/feeds/question/324170http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/324170/how-to-pass-server-side-error-messages-to-asp-net-ajax-client0How to pass server-side error messages to ASP.NET Ajax client?mika2008-11-27T16:28:10Z2009-11-13T23:00:02Z
<p>An example scenario:</p>
<ol>
<li>User performs an update, for example a drag & drop. This is an ajax request.</li>
<li>Server-side code cannot validate the update or the operation just fails. An exception is thrown.</li>
<li>A reasonable error message should be shown to the user.</li>
</ol>
<p>How should I communicate the exception to the client side and show the error message in a div message box?</p>
<p>The message should be shown <strong>after the fact</strong>. Sometimes it is possible to prevent errors in client-side code but I'm not concerned about this.</p>
<p>With traditional data binding in the code behind file I can show a label after an error condition. But if the Ajax control is connected to a provider class specified in the aspx, I don't see how this would be possible. Only option I can think of is to catch server-side exceptions in client-side code. Is this possible? </p>
<p>I'm using Telerik RadControls for ASP.NET Ajax.</p>
http://stackoverflow.com/questions/324170/how-to-pass-server-side-error-messages-to-asp-net-ajax-client/332045#3320450Answer by rams for How to pass server-side error messages to ASP.NET Ajax client?rams2008-12-01T20:17:46Z2008-12-01T20:17:46Z<p>have you tried wraping the ajax call in a try catch block and using the exception to get the error message?</p>