Hello!
I have a page with multiple RadComboboxes on it. The Datasources of the comboboxes are set in the Page_Load event.
On the same page i have a button that downloads a pdf document.
After clicking this button the comboboxes do not open anymore.
the button triggers a post back and the following code is executed:
########################
byte[] export = //Code to generate pdfDocument
Response.ContentType = "application/pdf";
Response.AddHeader("Content-Disposition", "attachment; filename=test.pdf \"");
Response.BinaryWrite(export);
Response.Flush();
Response.End();
########################
what is going wrong?
thanks in advance
Markus
I have a page with multiple RadComboboxes on it. The Datasources of the comboboxes are set in the Page_Load event.
On the same page i have a button that downloads a pdf document.
After clicking this button the comboboxes do not open anymore.
the button triggers a post back and the following code is executed:
########################
byte[] export = //Code to generate pdfDocument
Response.ContentType = "application/pdf";
Response.AddHeader("Content-Disposition", "attachment; filename=test.pdf \"");
Response.BinaryWrite(export);
Response.Flush();
Response.End();
########################
what is going wrong?
thanks in advance
Markus