user control:
private string _InstructorFinderSide;
public string InstructorFinderSide
{
get { return _InstructorFinderSide; }
set { _InstructorFinderSide = value; }
}
From within the user control you can simply refer to "InstructorFinderSide" fromthereonin to get the value that was assigned to it by the parent.
Parent:Two methods
in codebehind
InstructorFinderSide="right"
No comments:
Post a Comment