<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Eclipsed4utoo&#039;s Blog&#187; Crystal Report Viewer</title>
	<atom:link href="http://eclipsed4utoo.com/blog/tag/crystal-report-viewer/feed/" rel="self" type="application/rss+xml" />
	<link>http://eclipsed4utoo.com/blog</link>
	<description>Not Your Ordinary Programmer</description>
	<lastBuildDate>Thu, 08 Sep 2011 17:09:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>ASP.Net &#8211; Crystal Report Viewer &amp; AJAX</title>
		<link>http://eclipsed4utoo.com/blog/asp-net-crystal-report-viewer-ajax/</link>
		<comments>http://eclipsed4utoo.com/blog/asp-net-crystal-report-viewer-ajax/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 19:39:24 +0000</pubDate>
		<dc:creator>Ryan Alford</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Crystal Report Viewer]]></category>

		<guid isPermaLink="false">http://eclipsed4utoo.com/blog/?p=52</guid>
		<description><![CDATA[I ran across this issue with the Crystal Report Viewer not printing or exporting if it was inside of an AJAX UpdatePanel.  It seems that the Crystal Report Viewer is required to do a synchronous postback to be able to print or export. You will need to add the Triggers as shown below to the [...]]]></description>
			<content:encoded><![CDATA[<p>I ran across this issue with the Crystal Report Viewer not printing or exporting if it was inside of an AJAX UpdatePanel.  It seems that the Crystal Report Viewer is required to do a synchronous postback to be able to print or export.</p>
<p>You will need to add the Triggers as shown below to the UpdatePanel, or remove it from the UpdatePanel all together.</p>
<pre class="brush: xml;">
&lt;asp:UpdatePanel ID=&quot;UpdatePanel1&quot; runat=&quot;server&quot;&gt;
   &lt;Triggers&gt;
      &lt;asp:PostBackTrigger ControlID=&quot;CrystalReportViewer1&quot; /&gt;
   &lt;/Triggers&gt;
   &lt;ContentTemplate&gt;
      &lt;CR:CrystalReportViewer ID=&quot;CrystalReportViewer1&quot; runat=&quot;server&quot; AutoDataBind=&quot;true&quot; /&gt;
   &lt;/ContentTemplate&gt;
&lt;/asp:UpdatePanel&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://eclipsed4utoo.com/blog/asp-net-crystal-report-viewer-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

