Hi,
How can i show the exposed property of user control in Markup.
I have property as shown below
public string property1
{
get
{
return "lbl1.text";
}
set { lbl1.text= value; }
}
i want its default value as "ABC" and developer can change it
when usercontrol in dragged on design page ,mark up should look like below
<uc1:UserControl ID="UserControl1" runat="server" property1="ABC" />
but i cant see lblDateName in markup and when i try add this attribute it does not show default value.(or make it as required field for developer who uses this usercontrol)
Go to the complete details ...