IE has problems with processing the image returned from a PostBack.
See also:
forums.daypilot.org/Topic.aspx/644/how_to_print_a_calendar
The workaround is to add the following header to the response:
Response.AddHeader("Content-Disposition", "attachment;filename=print.png");
This will force an external handling of the image - that might be either download or opening in an image viewer, depending on user browser settings.
In Windows XP, Vista, and 7, there is a default image viewer installed. It can be opened directly from the browser and allows image printing.
See also:
kb.daypilot.org/65764/how-to-force-download-of-exported-calendar-scheduler-image-pn/
Another option would be to redirect the user to a special printing page using a <a href="Print.aspx?yourParams">Print</a> link, or using Response.Redirect() call in the Button.Click handler. That page would use the printing code right in Page_Load().