I am trying ot add a signature line to the end of the grid when the user exports. So far I am unsuccessful. After reading through the online help I still cannot seem to get it working. Has anyone added extras to the .pdf export? if so can someone point me in the right direction. The code I am using is below.
Thanks
Thanks
Protected Sub RadGridSearchresults_PdfExporting(ByVal source As Object, ByVal e As Telerik.Web.UI.GridPdfExportingArgs) Handles RadGridSearchresults.PdfExporting
Dim myHTMLCode As String = "Signature ___________________________________"
source.ExportOutput = source.ExportOutput.Replace("</
body
>", myHTMLCode + "</
body
>")
End Sub