I have an ASPX page (with VB Codebehind). I would like to extend the GridView class to show the header / footer when no rows are returned.
I found a C# example onli
Please see here.
There is no exact equivalent to this for VB. Use a 'Sub' delegate with a 'ByRef' parameter instead.
There is no exact equivalent to this for VB.
Use a 'Sub' delegate with a 'ByRef' parameter instead.
A follow-up answer gives an example that works, but explains why it's a bad idea.