Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

ParseControl during runtime with a custom control

0.00/5 (No votes)
17 May 2006 1  
Using ParseControl during runtime with a custom control.

Introduction

ASP.NET 2.0 has made the use of master/details page inheritance much easier. It has, however, introduced some extra points to keep in mind while working with master/details pages. The ParseControl method is probably not the most difficult method to use, but if you want to render a custom control that is not part of the .NET framework, then you have to keep in mind to register the control on the page during runtime before rendering the control itself.

Background

I was recently trying to split web page content from the actual web page design. This led me to save the content in a database and have the page layout in a master/details page structure. To make life easier, I created custom controls with the additional functionality that was needed on the separate pages.

I did, however, get stuck while trying to render the controls during runtime. Even though I registered the custom controls in the master and details pages during design time, I kept getting a server error: "Unknown server tag...".

The solution is simple, if you know what you are looking for...

Using the Code

As I was working with master/details pages, I first had to get a reference to the ContentPlaceHolder of the master page during runtime from the details page:

Dim PlaceHolder1 As ContentPlaceHolder = Master.FindControl("ContentPlaceHolder1")

Next, declare a control of type Control and call the ParseControl method to assign the value of the custom control to the newly created control:

Dim c As Control
c = ParseControl("<search:searchbox ID="Searchbox" runat="server" />")

Add the newly created control to the ContentPlaceHolder control:

PlaceHolder1.Controls.Add(c)

As I mentioned at the beginning of the article, you first have to register the control on the page before you add the control.

Amend the ParseControl statement and add the @register directive that references your custom control.

c = ParseControl("<%@ register tagprefix="search" tagname="searchbox" " & _
   "src="~/searchresults.ascx" %><search:searchbox ID="Searchbox" runat="server" />")

Points of Interest

ParseControl accepts any HTML that you throw at it. You can therefore save the entire page's HTML in a database field and render it during runtime by parsing it out.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here