Dream Tech Blog

A person with no dream in life can never live a happy life.
posts - 108, comments - 433, trackbacks - 6, articles - 15
  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理

公告

2004年5月19日

http://www.msner.com/Article_Show.asp?ArticleID=205

巧妙让MSN实现离线留言的功能,这样即使你不在线,你的好友也可以给你方便的留言,而无需慢腾腾的登陆邮件系统给你发邮件了。由于服务商是国外提供的,不支持中文信息,如果发中文信息的话,你的邮箱收到的是一个个的问号。这就要求你的好友给你的留言需要用英文和数字。这也是唯一的缺点。许多人觉得qq可以离线留言比msn要方便的多,我们用email留言变相实现这个功能。虽然还有暂时不能支持中文的缺点,但有总比没有好吧。

我就申请了,不过就是收信息有些慢。别人给我发送的离线信息,30分钟后才收到!
http://www.msner.com/Article_Show.asp?ArticleID=205


点击这里Start:http://join.msn.com/?pgmarket=en-us&page=hotmail/alerts&ST=1&RU=http%3a%2f%2fjoin.msn.com%2f%3fpage%3dmisc%2fspecialoffers%26pgmarket%3den-us

posted @ 2004-05-19 11:56 Dream 阅读(807) 评论(1) 编辑

使用VBScript編輯註冊表, 設定電腦允許ActiveX的才可以! 不知道使用ASP.NET如何寫?

  <script language="VBScript">
   dim hkey_root,hkey_path,hkey_key
   hkey_root="HKEY_CURRENT_USER"
   hkey_path="\Software\Microsoft\Internet Explorer\PageSetup"
    'on error resume next
    Set RegWsh = CreateObject("WScript.Shell")
    hkey_key="\header"   
    RegWsh.RegWrite hkey_root+hkey_path+hkey_key,"" '//清空頁眉
    hkey_key="\footer"
    RegWsh.RegWrite hkey_root+hkey_path+hkey_key,"" '//清空頁腳
    hkey_key="\margin_top"
    RegWsh.RegWrite hkey_root+hkey_path+hkey_key,"0.74803" '//19mm
    hkey_key="\margin_bottom"
    RegWsh.RegWrite hkey_root+hkey_path+hkey_key,"0.74803" '//19mm
    hkey_key="\margin_left"
    RegWsh.RegWrite hkey_root+hkey_path+hkey_key,"0.74803" '//19mm
    hkey_key="\margin_right"
    RegWsh.RegWrite hkey_root+hkey_path+hkey_key,"0.74803" '//19mm
      
  '//
  </script>

 

posted @ 2004-05-19 11:49 Dream 阅读(992) 评论(0) 编辑