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 void RenderMonoXTemplate(
	Control templateContainer,
	string template,
	Hashtable tagObjectMappingCollection
)
Visual Basic
Public Shared Sub RenderMonoXTemplate ( 
	templateContainer As Control,
	template As String,
	tagObjectMappingCollection As Hashtable
)
Visual C++
public:
static void RenderMonoXTemplate(
	Control^ templateContainer, 
	String^ template, 
	Hashtable^ tagObjectMappingCollection
)
F#
static member RenderMonoXTemplate : 
        templateContainer : Control * 
        template : string * 
        tagObjectMappingCollection : Hashtable -> unit 

Parameters

templateContainer
Type: System.Web.UI..::..Control
Container that holds rendered template
template
Type: System..::..String
Template html
tagObjectMappingCollection
Type: System.Collections..::..Hashtable
Tag/Object/Control mapping where tag is replaced with given object

See Also