Skip to content

Instantly share code, notes, and snippets.

View dannylloyd's full-sized avatar

Danny Lloyd dannylloyd

  • University of Arkansas for Medical Sciences
  • Cabot, Arkansas
View GitHub Profile
Namespace Controls.Bootstrap
Public Class GridView
Inherits WebControls.GridView
Public Sub New()
UseAccessibleHeader = True
AddHandler DataBound, AddressOf UseTableHeaderTag
End Sub
@dannylloyd
dannylloyd / Information-Hiding-Javascript.js
Created June 1, 2011 18:29 — forked from JayDouglass/Information-Hiding-Javascript.js
Information hiding in JavaScript, private instance variables and methods
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 () {