http://support.microsoft.com/default.aspx?scid=kb;EN-US;q126449
Archive for May, 2006
Keyboard shortcuts for windows
Posted in General, tagged General on May 27, 2006 | Leave a Comment »
no right click allowed
Posted in Javascript, tagged Javascript on May 23, 2006 | Leave a Comment »
here is the script not ot allow right click in browser
<script language=”Javascript1.2″>
am = “NO RIGHT CLICK ALLOWED!”;
bV = parseInt(navigator.appVersion)
bNS = navigator.appName==”Netscape”
bIE = navigator.appName==”Microsoft Internet Explorer”
function nrc(e) {
if (bNS && e.which > 1){
alert(am)
return false
} else if (bIE && (event.button >1)) {
alert(am)
return false;
}
}
document.onmousedown = nrc;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (bNS && bV<5) [...]
link of connection string
Posted in General, tagged connection string on May 15, 2006 | Leave a Comment »
http://dofactory.com/
http://www.connectionstrings.com/

