I would like to apply stylesheet class for controls based on some conditions. Say
If (RepeatedUser)
{
applyThisStyleSheetClass
}
else
{
applyAnotherStyleSheetClass
}
Do i need to create any custom control /Custom Property / Extension method to achieve this?