自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

weiyue.net

weiyue.net

  • 博客(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 847

转载 [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 679

原创 [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 1105

转载 企业的敏捷方案:将平台作为服务

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 1668

转载 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 1278

转载 asp.net global resources programmatically

http://msdn.microsoft.com/en-us/library/ms227982.aspx 

2010-05-15 16:59:00 759

转载 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 1344

转载 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 710

转载 跨平台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 529

原创 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 383

原创 [SQL模板] 避免使用游标 cursor 的最佳方法

很多数据管理员DBA会告诉你尽量避免使用cursor. 它会锁住读取的数据甚至表单。经过搜索和研究,觉得用以下方法作为替代最好。代码是我用模板(Template)的形式写的。将代码粘贴到SQL Server Management Studio (SSMS), 按住Ctl + Shilft + M, 然后点击OK, 就可以运行了。-- ============================

2008-05-09 21:36:00 1043

原创 [必备工具] 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 1667

原创 使用 HybridDictionary 类

看到 CSLA.NET3.5 中很多次使用了HybridDictionary,性能极佳,就研究了一下。其定义如下:[Serializable]public class HybridDictionary : IDictionary, ICollection, IEnumerableHybridDictionary 类特别适合在不清楚集合大小的情况下使用。它利用了 ListDictio

2008-05-05 21:09:00 1260

原创 必备 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 1868

转载 [经典必知] - 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 574

转载 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 2613 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 925

原创 如何使用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 1404

原创 提高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 572

Profession ASP NET MVC 2 Framework Second Edition

最新最好的ASP.NET MVC书籍. Pro ASP.NET MVC 2 Framework. This book is for professional software developers who already have a working understanding of C# and general web development concepts such as HTML and HTTP. Many readers will have background knowledge of traditional ASP.NET (now known as Web Forms, to distinguish it from MVC), so in many places I point out the similarities of and differences between the two ASP.NET technologies. But if you’ve used PHP, Rails, or another web development platform, that’s fine too. To get this most out of this book, you’ll need to have a fair level of passion and enthusiasm for your craft. I hope you’re not satisfied just to throw together any old code that appears at first to work, but instead would prefer to hone your skills by learning the design patterns, goals, and principles underpinning ASP.NET MVC. This book frequently compares your architectural options, aspiring to help you create the highest quality, most robust, simple, and maintainable code possible. You Don’t Need to Know ASP.NET MVC 1 Already This book primarily targets developers who are new to ASP.NET MVC; it doesn’t assume any existing knowledge of ASP.NET MVC 1. Most readers won’t care whether a given feature is new in version 2 or already existed in version 1, so this book is structured to best teach the whole of ASP.NET MVC 2 in the most approachable order, not in the order of when each framework feature was first invented. This is a new edition of a 2009 book about ASP.NET MVC 1. Much of the material is based on the original book—thoroughly updated and revised, of course, to account for the latest technologies and developments in industry best practices. If you have already read the previous edition of this book, you may wish to skim Part 1 of this new book and then go more slowly over the details in Parts 2 and 3.

2010-07-29

CSharp 3.0 Design Patterns

设计模式参考书,C#3.0 If you are a programmer who loves your code, for whom every line has a precise meaning and every feature has a correct place, this book is for you. It will help you with your primary job of making your code correct, elegant, extensible, and effi- cient. If you serve the business ends of your organization by focusing on the quality of your code, you need a book like C# 3.0 Design Patterns. Knowledge about design patterns is also a big stepforward for those working upfrom low-level programmers to software engineers and architects. Through reading this book, you will acquire skills in: • Programming design patterns • Basic UML modeling notation for representing patterns • Selecting patterns appropriate for given scenarios and comparing alternative implementations • Using advanced language features of C# 3.0 to realize patterns efficiently and elegantly

2009-11-13

web-2-0-architectures-what-entrepreneurs-and-information-architects-need-to-know

一本关于Web2.0的企业级构架师的好书!

2009-08-31

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除