Could not load file or assembly 'Microsoft.SqlServer.Management.Sdk.Sfc, Version=10.0.0.0, Culture=neutral, PublicKey Token=89845dcd8080cc91' or one of its dependecies. The system cannot find the file specified.
It seems that this used to work before installing the Telerik controls or maybe it's just been a while since I've done this. Thanks for any help.
Hi,
The following code does not work properly.Contents are displayed in first page only.Second page is appeared as blank page.Heading alignments are wrong.What is wrong with the following code?
System.Web.
HttpResponse response = System.Web.HttpContext.Current.Response;
response.Clear();
response.AddHeader(
"Content-Type", "binary/octet-stream");
response.AddHeader(
"Content-Disposition",
"attachment; filename=file1.pdf; size=" + pdfBytes.Length.ToString());
response.Flush();
response.BinaryWrite(pdfBytes);
response.Flush();
response.End();