ASP.NET: Get Access Of Control Within A CreateUserWizard
January 9, 2009
Getting access to a control from within c# is straightforward. You just call the ID name and call the method or property that you want to use. If you are going to get access to a control from within a CreateUserWizard control and your code may look something like
you call the Label control by
Label lbl = (Label) RegisterUserWizard.CreateUserStep.ContentTemplate.label;




Comments
Got something to say?