自定义博客皮肤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 823

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

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

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

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 1655

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

转载 asp.net global resources programmatically

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

2010-05-15 16:59:00 745

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

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

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

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

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

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

2008-05-09 21:36:00 1018

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

原创 使用 HybridDictionary 类

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

2008-05-05 21:09:00 1247

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

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

转载 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 2534 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 904

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

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

Reporting with Microsoft SQL Server 2012

Learn to quickly create reports in SSRS and Power View as well as understand the best use of each reporting tool Overview Empowers a highly visual design experience Increase productivity and proactive intelligence through operational or ad hoc reports Reporting with Microsoft SQL Server 2012 will cover all the features of SSRS and Power View and will provide a step-by-step lab activity to get you developing reports very quickly. You will learn the strengths and weaknesses of each tool so you understand the best tool to use for the various reporting scenarios you will encounter. In Detail Reporting with Microsoft SQL Server 2012 will cover all the features of SSRS and Power View and will provide a step-by-step lab activity to help you develop reports very quickly. Starting with the difference between standard and self- service reporting, this book covers the main features and functionality offered in SQL Server Reporting Services 2012 including a breakdown of the report components, development experience, extensibility, and security. You will also learn to set up and use Power View within Excel and SharePoint and connect to a tabular model as well as a multidimensional model. The book provides real-life reporting scenarios that help to clarify when those scenarios are discussing standard reporting, in which case SSRS is the best choice, and when they are discussing self-service reporting, in which case Power View is the best choice. This book will have you creating reports in SSRS and Power View in no time!. What you will learn from this book Get to grips with reporting scenarios that describe the best reporting tool to use Follow the step-by-step exercises to build a report in SSRS and Power View Visualize and interact with data in bold new ways with Power View Generate reports quickly using intuitive interfaces Create self-service reports with a wide variety of formats Approach This is a step-by-step tutorial that deals with Microsoft Server 2012 reporting tools:SSRS and Power View. Who this book is written for If you are a BI developer, consultant, or architect who wishes to learn how to use SSRS and Power View, and want to understand the best use for each tool, then this book will get you up and running quickly. No prior experience is required with either tool!

2015-04-17

Architecting the Cloud: Design Decisions (SaaS, PaaS, and IaaS)

An expert guide to selecting the right cloud service model for your business Cloud computing is all the rage, allowing for the delivery of computing and storage capacity to a diverse community of end-recipients. However, before you can decide on a cloud model, you need to determine what the ideal cloud service model is for your business. Helping you cut through all the haze, Architecting the Cloud is vendor neutral and guides you in making one of the most critical technology decisions that you will face: selecting the right cloud service model(s) based on a combination of both business and technology requirements. Guides corporations through key cloud design considerations Discusses the pros and cons of each cloud service model Highlights major design considerations in areas such as security, data privacy, logging, data storage, SLA monitoring, and more Clearly defines the services cloud providers offer for each service model and the cloud services IT must provide Arming you with the information you need to choose the right cloud service provider, Architecting the Cloud is a comprehensive guide covering everything you need to be aware of in selecting the right cloud service model for you.

2015-04-17

Web Application Development with Yii and PHP 2012

This book is a step by step tutorial in developing a real-world application using the incremental and iterative approach to software development. You learn about agile software development by leaning on the agile nature of the Yii application development framework. You touch on each aspect of the software development life-cycle by building a project task management application from concept through production deployment.

2014-01-06

pro wcf-4 practical microsoft soa

最新的WCF4.0开发电子书 Part 1: Introducing Windows Communication Foundation This part of the book explains the business motives and pain points of the various distributed technologies developed by Microsoft. It explains how you can address these issues using WCF. Once you understand some of these basic concepts of WCF, including the business and technological factors, you can appreciate its simplicity and flexibility. Chapter 1 covers the service standards and introduces WCF. Chapter 2 explains the new features of WCF that ship with .NET 4.0. Chapter 3 discusses the unified programming model of WCF and how WCF provides the best tools for creating secure, interoperable web services. Part 2: Programming with WCF This part covers the technical features of WCF in detail. You’ll concentrate on the programming aspects of WCF with the assistance of a fictitious stock market application. Chapter 4 guides you through installing and creating WCF services. Chapter 5 covers creating services, and the various hosting options available in WCF services. Chapter 6 discusses how to manage WCF services to obtain the best return on investment for your application. Part 3: Advanced Topics in WCF Real-world SOA applications will have many demanding features to implement. These complex real-world web service implementations will address security issues (both client and service), reliable messaging, transactions, COM+ integration, data integration issues, and peer-to-peer communications. In Chapters 7 through 12, you will concentrate on these topics. In addition, you’ll investigate the WCF interoperability options available to seamlessly communicate with non-Microsoft platforms in Chapter 13.

2011-08-16

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关注的人

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