Welcome PDF Software Searcher!

You've arrived at this website because you typed in "pdfajax.com", a domain we own. You may have tried to reach a different company or website with a similar domain, but while you're here, please try our PDF editing technology below, free! With only a few lines of code, we can help you integrate this technology into your own website.

RAD PDF - Interactive Demonstrations

This basic implementation demonstrates how easy it is to upload your own PDF documents into RAD PDF, ready for annotating, editing, form filling, and more. Please choose a PDF file up to 50 MB and 2500 pages. This example utilizes RAD PDF's Lite Document architecture and the CreateEmptyDocument() method to demostrate a quick, scalable way to get started. Files uploaded to this sample are automatically removed after ~12 hours.

Want to try RAD PDF on your own computer or server? Download the Windows Installer

RAD PDF Sample Source Files

Default.aspx

<%@ Page Language="C#" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<%@ Register Assembly="RadPdf" Namespace="RadPdf.Web.UI" TagPrefix="radPdf" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>RAD PDF Sample</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
          <radPdf:PdfWebControlLite ID="PdfWebControl1" runat="server" height="600px" width="100%" 
               CollapsibleViewerSide="true" EnablePrintSettingsDialog="true" 
               ViewerSideDefault="None" ViewerZoomDefault="ZoomFitWidth100" />
    </div>
    </form>
</body>
</html>

Default.aspx.cs

using System;

using RadPdf.Lite;

partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        PdfLiteSettings settings = new PdfLiteSettings();
        settings.MaxPdfPages = 1000;
        settings.MaxPdfPageWidth = 100 * settings.RenderDpi;
        settings.MaxPdfPageHeight = 100 * settings.RenderDpi;

        // Create empty document to upload into
        this.PdfWebControl1.CreateEmptyDocument(settings);
    }
}

Default.aspx

<%@ Page Language="VB" CodeFile="Default.aspx.vb" Inherits="_Default" %>

<%@ Register Assembly="RadPdf" Namespace="RadPdf.Web.UI" TagPrefix="radPdf" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>RAD PDF Sample</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
          <radPdf:PdfWebControlLite ID="PdfWebControl1" runat="server" height="600px" width="100%" 
               CollapsibleViewerSide="true" EnablePrintSettingsDialog="true" 
               ViewerSideDefault="None" ViewerZoomDefault="ZoomFitWidth100" />
    </div>
    </form>
</body>
</html>

Default.aspx.vb

Option Explicit On
Option Strict On

Imports RadPdf.Lite

Partial Class _Default
    Inherits System.Web.UI.Page

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

        Dim settings As PdfLiteSettings = new PdfLiteSettings()
        settings.MaxPdfPages = 1000
        settings.MaxPdfPageWidth = 100 * settings.RenderDpi
        settings.MaxPdfPageHeight = 100 * settings.RenderDpi

        ' Create empty document to upload into
        Me.PdfWebControl1.CreateEmptyDocument(settings)

    End Sub
End Class
RAD PDF is a Red Software product - ©2007-2024 Red Software