Renders tags according to the supplied template.

Namespace: MonoSoftware.MonoX.Utilities
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public static string RenderMonoXTemplate(
	string template,
	Hashtable tagObjectMappingCollection
)
Visual Basic
Public Shared Function RenderMonoXTemplate ( 
	template As String,
	tagObjectMappingCollection As Hashtable
) As String
Visual C++
public:
static String^ RenderMonoXTemplate(
	String^ template, 
	Hashtable^ tagObjectMappingCollection
)
F#
static member RenderMonoXTemplate : 
        template : string * 
        tagObjectMappingCollection : Hashtable -> string 

Parameters

template
Type: System..::..String
Template html
tagObjectMappingCollection
Type: System.Collections..::..Hashtable
Tag/Object/Control mapping where tag is replaced with given object

Return Value

Type: String
Parsed template

See Also