This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Namespace Controls.Bootstrap | |
Public Class GridView | |
Inherits WebControls.GridView | |
Public Sub New() | |
UseAccessibleHeader = True | |
AddHandler DataBound, AddressOf UseTableHeaderTag | |
End Sub |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function superClass() { | |
var self = this; // used when you want to reference an instance of this object from private methods | |
this.PublicIVar = "asdafd"; | |
var privateIVar = "encapsulated"; | |
function PrivateFunction() { | |
} | |
this.PublicFunction = function () { |