Filed under:
[ IT ] 作者: Miller
现在还有一些Live Messenger邀请,各位想要的请留下您的信息,先来先得。
出品的DXperiens控件系列是我目前用了那么多综合控件以来觉得最好的一个,无论是界面还是功能都是最好的,可惜没有找到Web版的破解,不知道各位兄弟谁有好点的破解,发我一份,谢谢啦。

5.64
telerik 公司出品的r.a.d.控件在业内也是赫赫有名的经典控件,这两天正在学习该套控件,因此记录下个人的学习点滴,以备参考。
首先,我使用的是r.a.d.editor,版本是2005 Q4 的5.64。
NickLee.Framework
我还没有使用过,不过朋友推荐我使用,应该不会很差,看介绍应该包含了很多平时能用到的控件。
http://www.mikecat.net/blogview.asp?logID=1259&cateID=1

官方网站:http://www.magicajax.net/
下载:
.NET 1.1 binary release
.NET 2.0 binary release
Source
最新版本:0.2.2
支持:.net 1.1 / 2.0
这两天找到一个非常好用的Ajax控件-MagicAjax,这是一个开源项目,支持dotNet 1.1 / 2.0,如果您对Ajax不知如何入手,建议您使用该控件。
使用方法:
1. 下载dll文件
2. 在Vs.net中,添加到工具箱中

3. 在页面中拖一个AjaxPanel,然后将你所需要的控件拖进去

4. 后台代码很简单,比如我这里是Button的Click事件(注:代码中,b类型为dataset,数据库中查询出来的数据,a为我自己定义的类)
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Label1.Text = Now
b = a.getProcedureDataSet("procTable")
DataGrid1.DataSource = b
DataGrid1.DataBind()
End Sub
5. 点击Button后,页面右上脚会出现Loading…字样

6. 页面将无刷新显示数据库查询结果。
7. 另外,在Web.config中必须添加以下代码:
<configuration> </configuration>中添加:
<configSections>
<section name="magicAjax" type="MagicAjax.Configuration.MagicAjaxSectionHandler, MagicAjax"/>
</configSections>
<magicAjax
outputCompareMode="HashCode"
tracing="false">
<pageStore
mode="NoStore"
unloadStoredPage="false"
cacheTimeout="5"
maxConcurrentPages="5"
maxPagesLimitAlert="false"
/>
</magicAjax>
<system.web></system.web>中添加:
<httpModules>
<add name="MagicAjax" type="MagicAjax.MagicAjaxModule, MagicAjax" />
</httpModules>
下面的链接是官方Demo,你可以去测试一下:
http://demo.magicajax.net/Examples.aspx
Filed under:
[ IT ] 作者: Miller
今天收到了微软发送的Windows Live Mail Beta 邀请信,加入后,再次访问www.hotmail.com,界面已经完全改变了,基于Ajax的Hotmail展现面前,可能是Beta版吧,还有很多Bug。
邀请信如下:
You’re Invited
We want you, one of our Hotmail VIPs, to experience the next generation of Web-based e-mail – Windows Live Mail Beta. We’ve been testing the service, and we feel like it’s now ready for some of our best Hotmail customers like you, to try it out and tell us what you think.
Here are some things we’ve added to kick your experience up a notch:
• Speed, Speed, Speed. Built on new technology that makes navigating your e-mail much faster
• Easy Inbox Management. Includes drag & drop, plus message previews with reading pane
• Info Bar. A new weapon to help zap junk and "phishing" e-mail
• Expanded storage. Extra space for all your stuff with 2GB of storage
(2 gigabytes = 2,000,000,000 bytes)
Want a sneak peek before signing on the dotted line? Click here
Rest assured that after the transformation to Windows Live Mail Beta takes place, your Hotmail messages, contacts, and calendar will all be there.
Thank you,
Windows Live Mail Beta Team
突然发现有一段时间没有写Blog了,这说明了一个道理,写Blog还是纯粹兴趣,如果一段时间由于工作或者生活的关系没有顾及到,那Blog肯定不会更新了,毕竟我不象那些专业写手一样必须天天一篇,也不需要和那些技术高手那样公布自己的研究成功,更不用学习某些人附庸风雅般的天天数篇文字以表明自己的才华,说到底,想写就写,想停就停,呵呵。