|
you bet.
I'll also post it here.
it is the "simple.aspx" page that is included with the component when we purchased it.
<%@ Page Language="VB" validateRequest="false" %>
<script runat="server" >
Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim objPDF as new Pintexx.Components.Web.pinPDF
objPdf.Html = "<span style='color:blue'>Created with pinPDF</span>" objPdf.OutputPath = "c:\temp" objPdf.FileName = "test.pdf"
if not objPdf.process() then response.write("Error: " + objPDF.ErrorMessage) else response.write("c:\temp\test.pdf created") end if response.end
End Sub
</script>
|