hai friends

how and where to download the DLL Crystal.Decision.crystal report.engine 11.6.360

thank's in advance

Recommended Answers

All 2 Replies

Its part of Crystal reports, and should be copyright, if its in their redistributable part, then you would have it supplied with crystal reports, marked as such

The coding part of this requires you to create an ASP.NET page that has no HTML component but contains a code-behind block like this one:

FileStream liveStream = new FileStream(localfilename, FileMode.Open,
FileAccess.Read);

byte[] buffer = new byte[(int)liveStream.Length];
liveStream.Read(buffer, 0, (int)liveStream.Length);
liveStream.Close();

Response.Clear();
Response.ContentType = "application/octet-stream";
Response.AddHeader("Content-Length", buffer.Length.ToString());
Response.AddHeader("Content-Disposition", "attachment; filename=" +
originalFilename);
Response.BinaryWrite(buffer);
Response.End();

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.