What is in a page
Page Object contains a reference to:
• Request object
• Response object
• Application object
• Session object
• Trace object
• Server object
• User Object
• PreviousPage object
Discussion of Information Technology as a discipline.
Page Object contains a reference to:
Pre-init event
Virtual path or web path
* Remove extra databinds for grideviews - You should only have one per page load.
I upgraded to IE8 recently and it seem to be much smarter. However it does not display my websites the same way.
For IE when i disable a control it takes the validation control out of play, but when I run the same file in songbird it does not work. It is not visible but it interferes with the submitting of the form.
It's simple but not very intuiative.
Sometimes vb.net application will turn the curesor for links (pointer) into text cursor (I).
Request Property Function and Example
VB.NET
<script type="text/javascript" language="javascript">
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);
function EndRequestHandler(sender, args) {
//Use timer so that the script will wait .5 sec before it fires to let page complete rendering the txtDSChartNumber element
setTimeout ( 'setFocus(\'txtDSChartNumber\')', 500 );
}
function setFocus(controlid) {
if (document.getElementById(controlid)){
document.getElementById(controlid).focus();
document.getElementById(controlid).select();
}
}
</script>