PdfWebControlLiteRenderHead Method |
Renders the
PdfWebControlLite required HTML HEAD elements (e.g. script, style, etc.) to the specified text writer, for use in advanced applications such as a
Custom HttpHandler, inline ASPX pages, or ASP.NET MVC view rendering.
Namespace:
RadPdf.Web.UI
Assembly:
RadPdf (in RadPdf.dll) Version: 3.48.0.0 (3.48.0.0)
Syntax public static string RenderHead()
Public Shared Function RenderHead As String
Return Value
Type:
StringA string that represents the HTML HEAD child elements.
Remarks
This method does not conisder any value assigned to BasePath.
Examples
The following code example demonstrates the rendering to an ASPX page (presuming a
PdfWebControlLite named
PdfWebControlLite1.
<html>
<head>
<title>Example</title>
<%=PdfWebControlLite.RenderHead() %>
</head>
<body>
<%=PdfWebControlLite1.RenderControl() %>
</body>
</html>
See Also