I have a user control which is essentially a main menu.
I can place it into my MasterPage hard-coded, but I don’t want that, I want to be able to dynamically place it with the code behind of the MasterPage.
<controls:mainMenu ID='MainMenu1' runat='server' />
So what I am looking to do is something like
if **condition is true ** _
response.write('<controls:mainMenu ID='MainMenu1' runat='server' />')
Of course, I know that won’t work, but how would I place the control based on a condition in code behind on the master page?
I’m using VB by the way, not C#
You could do something like this –
You’d need to add a Panel or PlaceHolder control to your page to hold your control.