Y星人の工作語錄

別理我, 我只是一個愛發勞騷的Y星人

12月
01

Maxthon 3, fast borwser than maxthon2 and olders…

Posted by YuanYuan under browser

yeh,I had try to use Maxthon3 for weeks, It still beta now.  The newest version 3.0.5.21 alpha.

Maxthon 3 have 2 model, TopSpeed model(極速模式) and compatible model(相容模式), look like IE7 or IE 8 ?!

I find Maxthon 3’s TopSpeed model kernel using Safari 530.6, compatible model using IE(what you installed IE).

in TopSpeed model, you’ll find the webpage show on so fast than compatible mode, so fast….Wow, look great.

you can try it.

Maxthon did great job again.

11月
26

borwser test

Posted by YuanYuan under browser

good article.

http://net.tutsplus.com/articles/web-roundups/13-ways-to-browser-test-and-validate-your-work/

10月
02

How to compare date and time (datetime) deadline ?

Posted by YuanYuan under ASP

I’m never coding ASP progarm before. some reason I need to modify the code.
I think the ASP not to hard for me.

request: compare date time expire or deadline ?
I google it, no good way to do or code to complicated. last I find easy function. CDate to do this.

  1. expire = "2009/10/02 3:08:20 PM"
  2.  
  3. if (Now() > CDate(expire)) then
  4. response.write("3over time, thanks.")
  5. else
  6. response.write("3still continued...")
  7. end if

yes, just CDate to solve this request.