in

ASP.NET Weblogs

This Blog

Syndication

ASP.NET Chinese Blogs

June 2006 - Posts

  • 部署Microsoft .NET Framework 3.0[翻译]

    内容篇幅较长,请点击 这里 阅读全文。 自由、创新、研究、探索…… 2006-07-01 10:51 发表评论 Read More...
  • (翻译)Windows Communication Foundation (Workshop)-Part 2:在WCF中操作会话

    内容篇幅较长,请点击 这里 阅读全文。 lovecherry 2006-07-01 09:31 发表评论 Read More...
  • 郁闷的64位操作系统

    这周一的时候,公司电脑出了问题,由于这台电脑CPU是64位的,以前操作系统是别人装的,装的是32位的。这次我就把它装成了64位的操作系统,这一周用下来,用64为操作系统,最少发现两个郁闷的事情。 1、微软最近发布了一个安全性补丁(KB914784 ),这个补丁让所有之前可用的64位操作系统下的虚拟光驱都没法用了。 要想用虚拟光驱,就得卸掉这个补丁,要不就不能用虚拟光驱。而且据 Daemon Tools 的说,要解决这个问题,比较麻烦。不知道啥时候。 参看: After Update of XP or Server 2003 x64 Editions Daemon Tools does not work anymore http://www.daemon-tools.cc/dtcc/showthread.php?goto=newpost&t=12103 2、目前64为操作系统下,打了所有微软补丁的电脑,如果你开发或编译一个链接Access数据库的程序,你会收到如下的异常: An unhandled exception of type 'System.InvalidOperationException' occurred in System.Data.dll Additional information: The 'Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine. 原因,微软JET数据引擎的兼容性问题。 解决方法参看: 64位XP操作系统下访问Access数据库的问题及解决 http://cajon.cnblogs.com/archive/2006/05/30/413408.html...
  • Latest IE7 Beta 3

    The latest IE7 Beta 3 is thinner and faster than Beta 2 in my opinion... Not bad. :o) Colt Kwong Share this post: Email it! | bookmark it! | digg it! | reddit! Read More...
  • WSS V3下载和安装图解

    Windows SharePoint Services V3 Beta 2 x86 English http://download.microsoft.com/download/a/7/7/a7780e67-f21a-4265-a445-8ef1f19d223f/SharePoint_setup.exe Windows SharePoint Services V3 Beta 2 Language Pack x86 English http://download.microsoft.com/download/1/2/1/1214e05d-c547-4407-bb5e-bf7c40095d97/SharePointLanguagePack_setup.exe 截图详细描述了安装过程: http://www.msotec.net/Forums/ShowThread.aspx?PostID=3825 相关资源: http://www.toddklindt.com/blog/Lists/Categories/Category.aspx?Name=Sharepoint http://www.sharepointblogs.com/dustin/articles/5235.aspx 2007 Office System Starter Kit: Enterprise Content Management Starter Kit Stramit's SharePoint Blog WSS FAQ 自由、创新、研究、探索…… 2006-06-27 22:47 发表评论 Read More...
  • 目前版本WSE3.0的两个小bug

    晕,竟然丢了我一篇blog,更晕的是我本地没备份,但是这篇竟然在其他站点找到了。 找到的地方: http://java.bokeland.com/blog/359/1012/2006/06/21/18257 目前版本WSE3.0的两个小bug 1、无法识别最新的VS 2005 Web Application Projects 。 结果把这类项目识别成非Web项目,一些Web项目的配置在这类项目中无法配置。 2、帮助文件跟IE7冲突 如果你装了IE7Beta2,你访问WSE3.0的帮助文件。 会报错误: --------------------------- 错误 --------------------------- A Runtime Error has occurred. Do you wish to Debug? Line: 98 Error: Could not complete the operation due to error 80041001. --------------------------- 是(Y) 否(N) --------------------------- 调试进去就会看到在以下userDataCache.load("docSettings"); 这么一行错误: function Load(key) { userDataCache.load("docSettings"); var value = userDataCache.getAttribute(key); return value; } This function is called from script.js 参看以下联接: WSE3.0帮助文件跟IE7Beta2有矛盾 Read More...
  • 生成高质量缩略图

    using System.Drawing; using System.Drawing.Drawing2D; using System.Drawing.Imaging; private void CreateThumbnail( string sFileSrcPath, string sFileDstPath, int iSizeLimit) { if (File.Exists(sFileSrcPath)) { System.Drawing.Image image = System.Drawing.Image.FromFile(sFileSrcPath) as System.Drawing.Bitmap; System.Drawing.SizeF size = new System.Drawing.SizeF(image.Width, image.Height); while (size.Width > iSizeLimit || size.Height > iSizeLimit) { size.Height /= 1.1F ; size.Width /= 1.1F ; } System.Drawing.Image bitmap = new System.Drawing.Bitmap(Convert.ToInt16(size.Width), Convert.ToInt16(size.Height)); System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(bitmap); g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;...
  • 关于翻译Scott Mitchell三层应用教程的事情

    CSDN有网友询问合作翻译的事情,我的建议是,大家任意挑几个教程翻译,只要相互间没有冲突,不做重复工作即可,然后在自己的博客里发表,提供一个目录,相互连接,等全部翻译完毕,再想法把这些东西汇集在一起 象这样的合作翻译,最好是用Wiki,但。。。 有兴趣参与的人请跟此贴,如果可以的话,现在就用这个帖子来联系吧,以后通过MSN或翻译群联系 我刚翻译完比较长的第一篇, 在ASP.NET 2.0中操作数据::创建一个数据访问层(C#版) http://blog.joycode.com/saucer/articles/77807.aspx 参考LoveCherry的网页查看参与者名单和翻译进度: http://lovecherry.cnblogs.com/archive/2006/06/20/430040.html Read More...
  • Scott Mitchell的ASP.NET2.0教程

    摘要:看了下博客堂的SAUCER的一个帖子提到的由Scott Mitchell写的46篇(现在出了15篇)ASP.NET2.0教程,觉得写的很不错,全英文的教程可能会对让某些人觉得头痛,我估计了下可能46篇加起来可能会有800页WORD文档,也就是说有一本书的容量了,真佩服作者。微软表示非常支持这个项目,希望大家都来参与。 阅读全文 。 lovecherry 2006-06-20 06:41 发表评论 Read More...
  • Online Office System

    Apart from Writely and Spreadsheet from Google family, Marcus told me that he's trying another online spreadsheet system ( EditGrid ) at a MVP gathering event last night. :o) Colt Kwong Share this post: Email it! | bookmark it! | digg it! | reddit! Read...
More Posts Next page »