Saturday, October 20, 2012

Optimizing the Website Performance Using ASP.NET 4.5

Optimizing the Website Performance Using ASP.NET 4.5: Kalyan Bandarupalli walks you through otpimizing your ASP.NET 4.5 website.

SignalR - Push Data to Clients using IHubContext

SignalR - Push Data to Clients using IHubContext: The article demonstrates how you can expose your hub using IHubContext anywhere in your project via static GlobalHost class. To illustrate the GlobalHost functionality, the example uses controller actions to push data to the clients via the IHubContext.

ASP.NET Multiple File Upload With Drag & Drop and Progress Bar Using HTML5

ASP.NET Multiple File Upload With Drag & Drop and Progress Bar Using HTML5: ASP.NET file upload widget with files and folders drag and drop, multiple file selection, progress, preview images, client-side image resizing and responsive layout. Supports cross-domain, chunked, resumable file uploads and automatic retries.

Optimizing the Website Performance Using ASP.NET 4.5

Optimizing the Website Performance Using ASP.NET 4.5: Kalyan Bandarupalli walks you through otpimizing your ASP.NET 4.5 website.

Tuesday, June 28, 2011

Generic Way to Bind Enum With Different ASP.NET List Controls « Abhijit's World of .NET

In this post I am going to explain how we can bind a Enum with ASP.NET List Controls. These comprise of four different types of control, CheckBoxList, DropDownList, ListBox and RadioButtonList. This is one of the common requirements during development to bind a Enum with List Control and challenge is when we need to bind the both text and value.
Let’s consider we have the blow Enum. Now I am going to bind it with all the above mentioned type List Controls.

Original post Here

Saturday, May 7, 2011

Front End Development Guidelines

Front End Development Guidelines by Tait Brown


What's Up, DOCTYPE?

The absence of a DOCTYPE is a crime punishable by death. You may have relied on the following DOCTYPE in the past, but it's important to know that this is now being superceded by a leaner and meaner snippet.
Ideally, the HTML5 DOCTYPE should be used. It's supported in all modern browsers, and throws IE6 and IE7 into standards mode. Source.

Friday, April 8, 2011

Using SQL Server DMVs to Identify Missing Indexes

ProblemIn a previous tip, Deeper insight into unused indexes for SQL Server, we discussed how to identify indexes that have been created but are not being used or used rarely.  Now that I know which indexes I can drop, what is the process to identify which indexes I need to create.  I can run the Database Tuning Advisor or examine the query plans, but is there any easier way to determine which indexes may be needed?
Solution
As with a lot of the new features we have seen with SQL Server 2005 and now with SQL Server 2008, Microsoft introduced a few more dynamic management views to also assist with identifying possible index candidates based on query history.