- 博客(19)
- 资源 (7)
- 收藏
- 关注
转载 ASP.NET MVC - CMS (Content Management System)
Found some disscustions about ASP.NET MVC - CMS (Content Management System). http://stackoverflow.com/questions/325182/ideas-for-opensource-cms-in-asp-net-mvc The CMS were mentioned:
2009-11-15 13:37:00 863
转载 [JQuery] JQuery 资源 1 + 65
1. VS2008对JavaScript有了更好的Intellisense支持,其中包括对 JQuery 的智能输入的良好表现。 http://weblogs.asp.net/bradvincent/archive/2008/04/28/better-jquery-intellisense-in-vs2008.aspx 65. Below, there are
2008-06-11 18:16:00 693
原创 [JavaScript] Javascript 读取 XML String 或 XML File
这段代码是我在回复一个帖子时写的,觉得有一定的收藏价值function listAllStates(){ var xmlDoc;var xmlString = wei; // Mozilla and Netscape browsers if (document.implementation.createDocument) { var parser = new
2008-05-11 14:13:00 1116
转载 企业的敏捷方案:将平台作为服务
The Platform-as-a-Service for the Agile Enterprise原文出处: http://www.theenterprisearchitect.eu/archive/2011/07/19/the-platform-as-a-service-
2011-09-22 08:25:56 1679
转载 ASP.NET MVC3 C# Razor 语法
简明版http://haacked.com/archive/2011/01/06/razor-syntax-quick-reference.aspx Syntax/Sample Razor Web Forms Equivalent
2011-07-20 12:39:46 1293
转载 asp.net global resources programmatically
http://msdn.microsoft.com/en-us/library/ms227982.aspx
2010-05-15 16:59:00 773
转载 ASP.NET Cookie and Cookieless
http://weblogs.asp.net/paulomorgado/archive/2008/08/01/iis-asp-net-cookieless-support-not-working-as-expected.aspxIIS/ASP.NET Cookieless Support Not Working As Expected In one
2010-03-18 11:58:00 1356
转载 DateTime Format String
Date and Time Format Patterns - http://authors.aspalliance.com/aspxtreme/sys/globalization/demo/DateTimeFormatInfoGetAllDateTimePatterns.aspxAll the patterns:0MM/dd/yyy
2009-11-10 13:04:00 721
转载 跨平台SQL语句模版 - SQL Server, MySQL, Oracle
It is essential to understand the details of the databases underlying the applications you work with; to know what happens to whichtables when you perform an action in your application. No matter
2009-11-09 08:34:00 536
原创 WCF and REST
29/07/2009 1:27:38 PM-- New page Architecture -- sub page -- SOAOffical Sitehttp://msdn.microsoft.com/en-us/netframework/dd547388.aspxThe WCF and REST - Starter Kithttp://geekswi
2009-07-29 11:31:00 392
原创 [SQL模板] 避免使用游标 cursor 的最佳方法
很多数据管理员DBA会告诉你尽量避免使用cursor. 它会锁住读取的数据甚至表单。经过搜索和研究,觉得用以下方法作为替代最好。代码是我用模板(Template)的形式写的。将代码粘贴到SQL Server Management Studio (SSMS), 按住Ctl + Shilft + M, 然后点击OK, 就可以运行了。-- ============================
2008-05-09 21:36:00 1058
原创 [必备工具] SQL2005 Management Studio 之 SSMS Tools Pack
绝对值得一试!下载地址:http://www.ssmstoolspack.com/Download.aspxSearch Results in Grid Mode and Execution PlansFind all occurrences of your search string in the execution plans or in the results in datagrid mod
2008-05-05 21:33:00 1679
原创 使用 HybridDictionary 类
看到 CSLA.NET3.5 中很多次使用了HybridDictionary,性能极佳,就研究了一下。其定义如下:[Serializable]public class HybridDictionary : IDictionary, ICollection, IEnumerableHybridDictionary 类特别适合在不清楚集合大小的情况下使用。它利用了 ListDictio
2008-05-05 21:09:00 1272
原创 必备 VS2008 辅助工具之 PowerCommands
下载地址(含源码):http://code.msdn.microsoft.com/PowerCommands/Release/ProjectReleases.aspx?ReleaseId=559Below is a list of the included in PowerCommands for Visual Studio 2008 version 1.1. Refer to the Rea
2008-05-02 21:14:00 1916
转载 [经典必知] - IE 和 Firefox 兼容的技巧
转载自:巴士飞扬-技术BLOG一、CSS HACK - 以下两种方法几乎能解决现今所有HACK.1, !important随着IE7对!important的支持, !important 方法现在只针对IE6的HACK.(注意写法.记得该声明位置需要提前.) #wrapper{...}{ width: 100px!important; /**//* IE7+FF */
2008-04-30 21:05:00 582
转载 ASP.NET MVC 资源大全
[原文出自http://weblogs.asp.net/craigshoemaker/ ] ASP.NET MVC官方网站 ASP.NET MVC MVC 社区网站 DotNetKicks, Technorati and del.icio.us MVC 搜索引擎 Highest Google ranking and b
2008-04-27 19:42:00 2625 1
原创 DataReader 与 DataTable, DataSet 间的快速转换(仅一行代码)
从.NET 2.0开始,你可以用一行代码解决转换问题: DataReader To DataTable Dim dr As SqlDataReader = ... Dim dt As DataTable = New DataTable() dt.Load(dr)DataTable To DataReader
2008-04-27 08:40:00 933
原创 如何使用ASP.NET AJAX ExtenderControl 和 ScriptControl
ASP.NET AJAX ExtenderControl and ScriptControlpublic abstract class ExtenderControl : Control, IExtenderControlpublic abstract class ScriptControl : WebControl, IScriptControl虽然AJAX ExtenderContro
2008-04-19 21:12:00 1414
原创 提高ASP.NET性能的技巧
最近在CodeProject中看到一篇关于提高ASP.NET性能的文章,感觉很好,学到几个很实用的技巧。http://www.codeproject.com/KB/aspnet/10ASPNetPerformance.aspx 文章的作者-Omar Al Zabir 还写了一本书叫《Building a Web 2.0 Portal with ASP.NET 3.5》。书中收集了作者近期发表的Bl
2008-04-15 20:13:00 587
Profession ASP NET MVC 2 Framework Second Edition
2010-07-29
CSharp 3.0 Design Patterns
2009-11-13
web-2-0-architectures-what-entrepreneurs-and-information-architects-need-to-know
2009-08-31
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人