System.Web.Compilation.TemplateControlCompiler.EnsureID C# (CSharp) Method

EnsureID() protected method

protected EnsureID ( ControlBuilder builder ) : void
builder System.Web.UI.ControlBuilder
return void
		protected void EnsureID (ControlBuilder builder)
		{
			string id = builder.ID;
			if (id == null || id.Trim () == String.Empty)
				builder.ID = builder.GetNextID (null);
		}
TemplateControlCompiler