-
Context
<p> The way context works is through the this variable. The this variable will always refer to the objet that the code is currently inside of. Remember that global objects will actually properties of the window object. This means that even in a global context, the this variable will still refer to an object. Context can be a powerful tool and is an essential one for object-oriented code. </p> -
Closure
<p> Closures are means through which inner functions can refer to the variables present in their outer enclosing function after their parent functions have already terminated. </p> -
encrypt configuration file
<p> aspnet_regiis -pe "appSettings" -app "/gbsa" -prov "DataProtectionConfigurationProvider" </p> -
Data View Part
<p> Form web Part can connect datavew web part. Here are the rules. </p> <p> If dataview web part define a filter using input parameter, form web part connect dataview webpart to modify view using parameters from. </p> <p> If dataview web part does not define a filter, form web part connect dataview webpart to filter view using data values from. </p> <pre data-sub="prettyprint:_"> </pre> -
submit only once
<pre data-sub="prettyprint:_"> <input type="button" value="Submit" onclick="this.disabled='true';"> </pre>