How can I catch exceptions from using controls in markup?
For example, I have the following code
<asp:XmlDataSource ID="XmlDataSource1"
runat="server"
DataFile="http://feeds.feedburner.com/"
XPath="rss/channel/item [position()<=10]"></asp:XmlDataSource>
If feedburner is disabled for any reason, where is the exception thrown and how to do it?
source
share