GridView that extends a class that has gridview common functions.
ASP.NET
1
Posts
1
Posters
0
Views
1
Watching
-
Here is what I’m trying to achieve: I want to write a class that I can add gridview functions like Sorting and other common functions. Then have aspx pages that contain gridviews inherit from this class so I won’t have to write the same functions on every aspx page. Every time I need to add functionality to a gridview, I have to add it to all the gridviews. I want to be able to add it to only one class. I tried a usercontrol with a gridview but it didn’t work for me. Thank you, Martin