Introduction
PDFThumbnail.NET is a 100% .NET ASP.NET control that streams PDF pages as thumbnail images to the browser.
This enables you to e.g. show a PDF document preview on a webpage.
PDFThumbnail.NET is FREE.
Sample code
The following code shows how the PDFThumbnail control is used on an ASP.NET web form.
<%@ Page language="c#" %>
<%@ Register TagPrefix="tc"
Assembly="TallComponents.PDFThumbnail"
Namespace="TallComponents.Web.PDF" %>
<html>
<body>
<form method="post" runat="server">
<tc:thumbnail path="PDFThumbnail.pdf"
index="1"
runat="server"
url="www.tallcomponents.com"
borderwidth="1"
bordercolor="gray"
dpi="12" />
</form>
</body>
</html>