Hi !
Can we set backcolor and forecolor of label in sql statement?
I had written the below sql Statement.
Select a.ColumnName from ((SELECT 'Category Name' ColumnName)UNION ALL (Select Distinct CategoryName as columnname from DistrictData where CategoryName like '%'+@Name+'%') union all(SELECT 'Business Name' ColumnName) UNION ALL (Select BusinessName as columnname from DistrictData where BusinessName like @Name+'%')union all (Select BusinessName as columnname from DistrictData where CategoryName like @Name+'%'))a
I need Some think like this.
if u see the pic,
1) CategoryName and BusinessName has backcolor and forecolor.
2) and how to disable click function on these Two labels (CategoryName and BusinessName).
Means When I click on these two ...
Go to the complete details ...