i have a tab control at top of the page. and its value like A to C, D to F and G to Z开发者_如何学Go.
my requirement is when the user click on the tab A to C then he can only see those data which start with A,B or C.
can anyone tell me a way how can i do it?
You could try handling the Selected
event that fires when you change tab, and use that to determine which tab was selected. You can then fill your grid control with the corresponding data.
精彩评论