07 Oct 2008

jQuery从此更牛了

为什么更牛了?

 

26日回家,昨天才返回,这么好的消息自己错过了,补记一下。

 

see see

 

 

Scott Guthrie公告 (jQuery将成为Visual Studio的一部分等更多好消息...)

 
jQuery头儿John Resig公告(jQuery, Microsoft, and Nokia)

 
Scott Hanselman的jQuery的演示

09 Aug 2008

【分享】如何创建自己的Visual Studio 2005/2008配色

自己改过配色的朋友都知道在Vs内配置比较麻烦,导入过别人配好的现成配置的朋友,有没有研究过那个.vssettings文件是个什么东西呢?


用文本编辑器打开它就能看到那是个Xml文件,现在有了一个很好的在线工具能够方便的搞出自己喜欢的配色,然后再导入就OK了。


http://frickinsweet.com/tools/Theme.mvc.aspx


vs_them_generator

19 Jul 2008

我学Linq to SQL做的demo

最近才开始学LINQ to SQL,

做了个demo,都是基本操作。

有兴趣的朋友看看。

http://download.csdn.net/source/528628

17 Jul 2008

Latest preview of the ASP.Net MVC available on CodePlex


ASP.NET MVC Preview 4 available!!!



Runtime Binary ASP.NET MVC CodePlex Preview 4




runtime binary, 1075K, uploaded Today - 772 downloads

DocumentationASP.NET Codeplex Preview 4 Readme
documentation, 71K, uploaded Today - 359 downloads

DocumentationASP.NET Codeplex Preview 4 Readme (PDF)
documentation, 469K, uploaded Today - 360 downloads

DocumentationChanges between Preview 3 and Codeplex Preview 4
documentation, 52K, uploaded Today - 208 downloads

DocumentationChanges between Preview 3 and Codeplex Preview 4 (PDF)
documentation, 174K, uploaded Today - 226 downloads

14 Jun 2008

提供我现用的Vs配色(灰黑色调)下载,有兴趣的朋友玩玩。

提供我现用的Vs配色(灰黑色调)下载,

 

有兴趣的朋友玩玩。

 

附件是Vs2005的,如果要在Vs2008下用,

 

自己用文本编辑器打开修改version为9.0即可。效果见截图



 

 
  点这里下载

13 May 2008

地震- 新房变危房

受灾了

2008-5-12日 2点30分左右,我被晃醒,感觉床在动,奔置厨房,感觉就像在树梢上,所有电话均不能拨出,看到窗外瓷砖下落。

数十秒后,穿衣,下楼,秩序还不错,奔袭至丰汇南路,早上得知自己新买新西兰小区的准备结婚用的新房变危房了,墙体裂缝,物业让回家搬东西

祝各位朋友都安全!公司让我们撤了!!




http://www.daminggong.net/xxl/

23 Apr 2008

CustomError可以设置绝对路径

偶然发现web.config内自定义错误信息页面
  <customErrors mode="RemoteOnly"     defaultRedirect="503.aspx">
   <error statusCode="404" redirect="404.aspx"/>
  </customErrors>

可以设置成
  <customErrors mode="RemoteOnly"     defaultRedirect="503.aspx">
   <error statusCode="404" redirect="http://www.github.com/404.aspx"/>
  </customErrors>
这样的绝对路径.
看了一下 CustomErrorsSection 中的代码

internal string GetRedirectString(int code)
{
    
string absoluteRedirect = null;
    
if (this.Errors != null)
    
{
        CustomError error 
= this.Errors[code.ToString(CultureInfo.InvariantCulture)];
        
if (error != null)
        
{
            absoluteRedirect 
= GetAbsoluteRedirect(error.Redirect, this.basepath);
        }

    }

    
if (absoluteRedirect == null)
    
{
        absoluteRedirect 
= this.DefaultAbsolutePath;
    }

    
return absoluteRedirect;
}

 

 

发现事实如此.
期间有个小笑话,我试验的时候顺手输入了个http://x x.com/404.aspx (两个xx中没空格)这样到一个页面跳入了一个xx站点,吓我一大跳. ,工位附近有MM,不知道有否影响本人正值地形象哦

20 Apr 2008

使用AzMan找不到Microsoft.Interop.Security.AzRoles的解决方法

在c:/Windows/system32下找到azRoles.dll

如果没有Xp/2003请安装http://www.microsoft.com/downloads/details.aspx?FamilyID=e487f885-f0c7-436a-a392-25793a25bad7&DisplayLang=en.

Win2000请安装http://www.microsoft.com/downloads/details.aspx?FamilyID=7edde11f-bcea-4773-a292-84525f23baf7&DisplayLang=en.

Vs2003/Vs2005/Vs2008命令行,或者Cmd命令行进入.net安装目录

敲入:

d:\Program Files\Microsoft Visual Studio 9.0\VC>tlbimp azroles.dll /out:Microsof

t.Interop.Security.AzRoles.dll /namespace:Microsoft.Interop.Security.AzRoles


成功提示:


Microsoft ® .NET Framework Type Library to Assembly Converter 3.5.21022.8

Copyright © Microsoft Corporation.  All rights reserved.


Type library imported to d:\Program Files\Microsoft Visual Studio 9.0\VC\Microso

ft.Interop.Security.AzRoles.dll




引用这个文件就OK了。


03 Apr 2008

MS Ajax 客户端生命周期

The flowing reference  is an excellent post !!!

http://aspnetresources.com/downloads/MS%20Ajax%20Client%20Life-Cycle%20Events.pdf


29 Mar 2008

使用dotNetZipLib轻松压缩目录/文件夹

.net1.1时代我们选SharpZipLib
.net2.0时代我们选System.IO.Compression名称空间下的东东
.net3.0时代我们选System.IO.Packaging名称空间下的东东。
今天发现CodePlex上有个好东西,另压缩如此之Easy。。。

 

  ZipFile zip = new ZipFile(directooutputFileName);
            zip.TrimVolumeFromFullyQualifiedPaths 
= true;
            zip.TempFileFolder 
= Path.GetTempPath();
            zip.Comment
                
= string.Format(A zip archives。{0}  {1},  Environment.NewLine, DateTime.Now.ToString());
            zip.AddDirectory(directory, 
string.Format(MyFolder-{0}, DateTime.Now.ToShortDateString()));
            zip.Save();

那就是

DotNet Zip Library