I have a situation that arises in front of me very often, but now I have no solution. Suppose I have a key / value pair, such as
UserID | Username
-----------------
1 | Yogi
2 | Mike
I want to bind this data to an asp label control. Right now, what am I doing, I am binding a UserID to a label hint and a UserName to the label text. It works fine, but the disadvantage is that when the user hovers the shortcut, it shows the UserID as a hint to the user, which is obvious. I want to find a better way to do this work, please help me get a better approach here.
source
share