Skip to content

Instantly share code, notes, and snippets.

@mikeedwards83
Created April 4, 2012 20:12
Show Gist options
  • Save mikeedwards83/2305226 to your computer and use it in GitHub Desktop.
Save mikeedwards83/2305226 to your computer and use it in GitHub Desktop.
Example of Dynamic UserControl
<%@ Control Language="C#" AutoEventWireup="true" Inherits="Glass.Demo.Application.Web.Controls.GlassDynamicUserControl, Glass.Demo.Application" %>
<h1>Dynamic Demo</h1>
<%=this.Model.Title %>
<%foreach(var child in this.Model.Children){ %>
<%= child.Name %>
<%} %>
<%= this.Model.Parent.Url %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment