Thursday, September 23, 2010

Dell key and Recovery key

Dell Laptop install :

if XP Pro 32 bit use the key MVF4D-W774K-MC4VM-QY6XY-R38TB, ifXP Pro 64 bit use FM634-HJ3QK-6QVTY-RJY4R-XCR9J. These are public keys which are even displayed on Microsoft's website http://technet.microsoft.com/en-us/libra… for people in exacly the sitiuation you are in because your CD Key on your COA doesn't work. If it's XP home use RCBF6-6KDMK-GD6GR-K6DP3-4C8MT, again this is a public CD key and Dell use the *SAME* key on *ALL* of their XP Home computers. If your PC currently has XP Home one, then this will be the actual CD KEY it's using now, not the one on the COA.

Recovery :
Ctrl+F11

Wednesday, September 22, 2010

Spry Form - button submit

把submit改為button, onclick時call下面function, 若validation不過, 可以自行設定進行其它動作, 如提示等等

// function validateonsubmit(){
// var myForm=document.getElementById("form_1");
// var SS= Spry.Widget.Form.validate(myForm);
// if(SS==true){
// myForm.submit();
// return true;
// }else{
// alert("my alert ");
// return false;
// }
// }