When you're designing, testing, or releasing a new Web API, you're building a new system on top of an existing complex and sophis...
Showing posts with label Web. Show all posts
Showing posts with label Web. Show all posts
Thursday, August 13, 2015
Wednesday, August 12, 2015
A Complete Guide to the MVC 6 Tag Helpers
Tag Helpers are a new feature in MVC that you can use for generating HTML. The syntax looks like HTML (elements and attributes) but is pr...
ASP.NET 5 Project Basics
When you create a new ASP.NET web application using the Web Application template, you are presented with a raft of new folders and files ...
ASP.NET MVC ActionFilter: Custom Authorization
A while back, I posted my top 5 favorite ASP.NET MVC Action Filters and enhancing your controllers with ActionFilters, but honestly, it d...
Create a jQuery Plugin to Sort and Paginate a Table
In a previous article Using jQuery to Sort and Paginate a Table , we saw how on a table with hundreds of rows, we could use sorting and p...
Monday, August 10, 2015
ASP.NET Web API GZip compression ActionFilter with 8 lines of code
If you are building high performance applications that consumes WebAPI, you often need to enable GZip / Deflate compression on Web API. ...
Sunday, August 9, 2015
MEASURE PERFORMANCE OF ASP.NET WEB APPLICATIONS WITH MICROSOFT PERFORMANCE MONITOR
This article gives a short introduction in performance measurement of Asp.Net web applications with the Microsoft Performance Monitor (pe...
IMPROVE SERVER PERFORMANCE WITH ASYNCHRONOUS WEBAPI
In this article I want to show, how you can improve server performance dramatically by using Microsoft asynchronous WebAPI. The text show...