自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(436)
  • 资源 (4)
  • 收藏
  • 关注

转载 Configuring IIS 5.1 to run an MVC application

Configuring IIS 5.1 to run an MVC application12JANhttp://westcountrydeveloper.wordpress.com/2011/01/12/configuring-iis-5-1-to-run-an-mvc-application/When hosting a MVC application

2013-07-02 22:31:56 536

原创 Visual Studio Project Template / Item Template/ Extension Location

http://msdn.microsoft.com/en-us/library/y3kkate1.aspxhttp://msdn.microsoft.com/en-us/library/dd293638.aspxVisual Studio Project Template LocationC:\Program Files (x86)\Microsoft Visual Studi

2013-07-02 22:20:11 883

转载 Registering Your Controls in Web.config

Registering Your Controls in Web.config Each time you add a custom control (or even a user control) to a webpage, Visual Studio generates the @ Register directive to ensure that the control is registe

2013-06-21 00:36:01 645

转载 Support for ViewState in Custom Control Properties

public string PromptText{get{String s = (String)ViewState["PromptText"];return ((s == null) ? String.Empty : s);}set{ViewState["PromptText"] = value;}}

2013-06-21 00:24:50 626

原创 different user control type: reuse layout vs reuse data

Reuse layout: normal User ControlReuse data: Templated User Controlhttp://www.codeproject.com/Articles/397646/A-Beginners-Tutorial-for-Understanding-Templated-Ucontainer :The main purpose of

2013-06-21 00:17:19 603

转载 How I explained OOD to my wife

http://www.codeproject.com/Articles/93369/How-I-explained-OOD-to-my-wifeIntroductionMy wife Farhana wants to resume her career as a software developer (she started her career as a software d

2013-06-20 16:56:11 864

转载 Design Principle

SOLIDPrinciplesSingle responsibilityOpen/closedLiskov substitutionInterface segregationDependency inversion

2013-06-20 11:44:37 556

转载 Forms Authentication Timeout vs Session Timeout

We have an old .NET 1.1 web application which I have to support and a recent change in the login process for a select few customers has been causing haywire with every users session. The folks at QA h

2013-06-20 10:36:49 922

转载 Understanding the Forms Authentication Ticket and Cookie

http://support.microsoft.com/kb/910443ASP.NET Support Voice ColumnUnderstanding the Forms Authentication Ticket and CookieTo customize this column to your needs, we want to invite you to s

2013-06-20 10:22:26 1035

转载 Event in Master Page, Content Page and User Control

http://msdn.microsoft.com/en-us/library/dct97kc3(v=vs.100).aspxThe general rule for how events are raised is that theinitialization events are raised from theinnermost control to the outermo

2013-06-18 17:43:36 609

转载 Dont use using with wcf proxy

http://dave-black.blogspot.sg/2012/03/dont-use-using-with-wcf-proxy.htmlIf you're trying to be a conscientious developer and making sure that you cleanup your resources - great! You are writing 'u

2013-06-17 10:03:04 618

转载 Don't use 'using()' with a WCF proxy

http://dave-black.blogspot.sg/2012/03/dont-use-using-with-wcf-proxy.htmlIf you're trying to be a conscientious developer and making sure that you cleanup your resources - great! You are writing 'u

2013-06-17 10:00:26 525

转载 Linq Union Vs Concat

var lstX1 = new List { new X1 { ID = 1, ID1 = 10 }, new X1 { ID = 10, ID1 = 100 } };var lstX2 = new List { new X2 { ID = 1, ID2 = 20 }, // ID changed here

2013-06-16 23:24:36 742

原创 Page and Form for dynamic Loading Control

protected void Page_PreInit(object sender, EventArgs e) { form1.Controls.Add(Page.LoadControl("WebUserControl1.ascx")); }

2013-06-16 18:25:34 676

转载 Asp.Net Globalization and Localization using Local Resource files and Global Resource files

http://minalabib.wordpress.com/2010/01/27/local-resources-vs-global-resources-in-net/In my previous article, I explained about asp.net Localization, Globalization concepts and Culture, UI Cultur

2013-06-16 17:36:48 1009

原创 use "OnCommand" event to handle multiple button click

protected void CommandEventHandler(Object sender, CommandEventArgs e) { string s = e.CommandName; }

2013-06-16 17:13:10 661

转载 Web Part Connection Sample

3 user controls:1) GetName.aspxPlease type your name:GetName.aspx.cs public partial class GetName : System.Web.UI.UserControl { protected void Page_Load(object sender, EventArgs e

2013-06-16 16:26:03 589

转载 A Beginner's Tutorial - Understanding ControlState in ASP.NET

IntroductionThis article aims at understanding why and when we need to have ControlState for the state management. We also try to understand the same with a very basic implementation of control

2013-06-16 14:12:33 611

转载 Cool ViewStateDecoder

ViewState is a great feature of ASP.NET, however too much ViewState might degrade performance. But what's actually "hidden" inside that weird looking form field you might be wondering? Well, use Fritz

2013-06-16 14:03:39 759

转载 SSL入门以及运用Wireshark破解Https(SSL)会话

http://blog.csdn.net/ackroyd/article/details/7854821SSL概念:Internet上对应的七层网络模型的每一层都已经提出了相应的加密协议。SSL是工作于网络会话层(Socket Layer)的网络安全协议。为数据通讯提供安全支持。总之,SSL协议的整个概念可以总结为:一个保证任何安装了安全套阶层的客户和服

2013-06-16 12:54:58 5695

转载 Search Visual Studio Regular Expressions

http://www.intertech.com/Blog/visual-studio-regular-expressions-search/I’m sure you’ve all seen the “Use: Regular expressions” option in the Visual Studio search dialog, but maybe you haven’t ta

2013-06-11 10:05:15 795

转载 Waitresource from sysprocesses

http://support.microsoft.com/kb/224453Identify blocking processesSELECT spid,blocked,waittime,waitresource from master..sysprocesses where blocked>0WaitresourceThis field indicates

2013-06-10 15:55:40 1218

转载 Inline vs. External Javascript

Inline Code  function a(){alert('hello world'); }  ::External Files   ::scriptone.jsfunction a(){alert('hello world'); }

2013-06-10 13:33:59 528

转载 HTTP协议详解

http://www.cnblogs.com/TankXiao/archive/2012/02/13/2342672.html当今web程序的开发技术真是百家争鸣,ASP.NET, PHP, JSP,Perl, AJAX 等等。 无论Web技术在未来如何发展,理解Web程序之间通信的基本协议相当重要, 因为它让我们理解了Web应用程序的内部工作. 本文将对HTTP协议进行详细的实例讲解

2013-06-10 13:23:07 439

转载 How cursors work

http://searchsqlserver.techtarget.com/feature/Part-1-How-cursors-workTo visualize how a cursor works, think of the apparatus used by a skyscraper window washer to travel up and down the skyscrap

2013-06-10 13:03:49 543

转载 emove the unwanted extension from Google Chrome

https://productforums.google.com/forum/?fromgroups#!topic/chrome/Tg_Wk5oXCtw1.      Uninstall suspicious programs from Control PanelWindows 8 users: Press Ctrl+X and select Control Panel > Progr

2013-06-10 10:28:23 633

转载 Using WebResource.axd for embedded resources

http://weblogs.asp.net/jeff/archive/2005/07/18/419842.aspxWow, and actual .NET post. I must not be feeling well.Anyway, anyone that has tried to use embedded resources in compiled assemblies usi

2013-06-09 22:27:16 531

转载 HOW TO Load a Custom Script with Dependencies

http://www.asp.net/ajaxLibrary/HOW%20TO%20Load%20a%20Custom%20Script%20with%20Dependencies.ashxHOW TO Load a Custom Script with DependenciesThe ASP.NET Ajax Library Script Loader can

2013-06-09 16:26:21 750

转载 Dynamic Data in Regular Websites/Web Applications

http://weblogs.asp.net/davidfowler/archive/2009/05/06/dynamic-data-preview-4.aspxDynamic Data in Regular Websites/Web ApplicationsUpdate: David Ebbo has a great video on channel9 about this. Y

2013-06-09 12:19:44 698

转载 WHAT IS ASP.NET DYNAMIC DATA?

http://www.hanselman.com/blog/PuttingASPNETDynamicDataIntoContext.aspxWHAT IS ASP.NET DYNAMIC DATA?Here's the Preview Drop of Dynamic Data for download. It'll be released later this year in

2013-06-09 11:28:43 1121

转载 HTTP协议/IIS 原理及ASP.NET运行机制浅析【图解】

http://www.cnblogs.com/wenthink/archive/2013/05/06/3058989.html前言前一段在整理邮件的时候发现几年前和CDD老师交流时的一份邮件.下面是简单摘要:“从技术角度来说,无论哪一个阵营,跟新技术都是不可避免的,也是很累的,当然作为一个程序员来说,也是必须的。要想让技术的更新对自己的影响减小,基础就必须打牢。

2013-06-07 13:42:39 850

转载 Using jQuery to directly call ASP.NET AJAX page methods

http://encosia.com/using-jquery-to-directly-call-aspnet-ajax-page-methods/When it comes to lightweight client-side communication, I’ve noticed that many of you prefer ASP.NET AJAX’s page methods

2013-06-05 23:26:07 831

转载 Quickly fill blank cells in Excel

http://www.techrepublic.com/blog/msoffice/quickly-fill-blank-cells-in-excel/3014Quickly fill blank cells in ExcelBy Susan HarkinsApril 26, 2010, 10:50 AM PDTTakeaway: Blank cel

2013-06-04 15:41:07 873

转载 Event Validation Errors and Network Congestion in ASP.NET

http://odetocode.com/blogs/scott/archive/2007/04/13/event-validation-errors-and-network-congestion-in-asp-net.aspxJoseph Rattz emailed me about posts I wrote last year covering ASP.NET event v

2013-06-03 23:37:15 682

转载 [ASPNET]ASP.NET Event Validation and “Invalid Callback Or Postback Argument” Troubleshooting info

http://blogs.msdn.com/b/stcheng/archive/2009/01/16/aspnet-asp-net-event-validation-and-invalid-callback-or-postback-argument-troubleshooting-info.aspxThere are many community members encountering

2013-06-03 23:30:35 747

转载 ASP.NET Event Validation and “Invalid Callback Or Postback Argument” : Part I

http://odetocode.com/blogs/scott/archive/2006/03/20/asp-net-event-validation-and-invalid-callback-or-postback-argument.aspxASP.NET 2.0 added a feature called event validation. Event validation c

2013-06-03 23:23:21 929

转载 ASP.NET REPEATER, LISTVIEW, DATALIST, DATAGRID, GRIDVIEW - WHICH ONE TO CHOOSE?

http://www.netrostar.com/ASP.NET-Repeater-ListView-DataList-DataGrid-GridView-which-one-to-chooseThis tutorial was brought to you by NetroStar, a Miami-based global web design company.In ASP

2013-06-03 09:35:26 1242

转载 Provider Pattern for Beginners

http://www.codeproject.com/Articles/550495/Provider-Pattern-for-BeginnersIntroductionProvider pattern allows the developers to create pluggable components. It was first introduced in framewo

2013-06-02 15:17:25 550

转载 Asp.net Authentication and Authrozation

Because web applications use the stateless HTTP, no information is retained for the user between requests. As a result,the user must be authenticated and authorized at the beginning of each request.

2013-06-02 15:15:10 999

转载 Handling session and authentication timeouts in ASP.Net

Handling session and authentication timeouts in ASP.Net By George Mihaescu Summary: this article describes the handling of in-process session and authentication timeouts in an ASP.Net applicat

2013-05-31 13:57:17 908

MCTS Self-Paced Training Kit(70-516)

EXAM PREP GUIDE Ace your preparation for the skills measured by MCTS Exam 70-516—and on the job—with this official Microsoft study guide. Work at your own pace through a series of lessons and reviews that fully cover each exam objective. Then, reinforce and apply what you’ve learned through real-world case scenarios and practice exercises. Maximize your performance on the exam by mastering the skills and experience measured by these objectives: Modeling data Managing connections and context Querying data Manipulating data Developing and deploying reliable applications PRACTICE TESTS Assess your skills with the practice tests on CD. You can work through hundreds of questions using multiple testing modes to meet your specific learning needs. You get detailed explanations for right and wrong answers—including a customized learning path that describes how and where to focus your studies.

2012-05-21

Microsoft Press Windows Azure Step by Step

Teach yourself how to build and host scalable applications in the cloud using Windows Azure—one step at a time. Ideal for those with basic programming skills, this tutorial provides practical, learn-by-doing exercises for working with the core services and features of the Windows Azure platform. Discover how to: Extend your existing skills to the cloud development model Build a simple web role application and deploy it to the cloud Create a worker role project to perform backend processes Store persistent data with Windows Azure Storage Develop a scalable database application in the cloud using Microsoft SQL Azure™ Connect several cloud-based applications with Windows Azure AppFabric Design a multitiered solution that can scale to meet user demand

2012-02-23

空空如也

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

TA关注的人

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