Fluent-API to add ActionFilters to Controllers – ASP.NET MVC Part 2
I’m working with my Fluent-API for adding Action Filters to Controllers and Action Methods. In my previous post, I created a new instance of each... more »
Tweet 0 CommentsSave Tags: .net, frameworks
Timers in .NET
This timer is considered a server-based timer that was designed and optimized for use in multithreaded environments. It can be accessed safely from... more »
Tweet 0 CommentsSave Tags: .net
RESTful Services with ASP.NET MVC and XHTML
A RESTful service is a web of resources that programs can navigate. When designing a RESTful service, you have to think carefully about how your web... more »
Tweet 0 CommentsSave Tags: .net, frameworks, xml
Health Monitoring and ASP.NET MVC
Health monitoring has been available in ASP.NET since v 2.0, and the health monitoring features can give you information you can’t find anywhere else.... more »
Tweet 0 CommentsSave Tags: .net, frameworks
Mobile Device Detection and Redirection Using ASP.NET
This article explains two approaches to determine if an HTTP request is coming from a mobile phone and then redirecting the request to a page... more »
Tweet 0 CommentsSave Tags: .net, how-to, web design
ATL Server debug issue
Problem Error while trying to run project: Unable to start debugging on the web server. Could not start ASP.NET or ATL Server debugging.Verify that... more »
Tweet 0 CommentsSave Tags: .net
Debug Issue IE Security
ProblemError while trying to run project: Unable to start debugging on the web server. You do not have permission to debug the application. The URL... more »
Tweet 0 CommentsSave Tags: .net
Fluent-API to add ActionFilters to Controller in ASP.NET MVC
When we create controllers for our ASP.NET MVC application we can also add Action Filters to handle cross-cutting concerns, like Authorization, Error... more »
Tweet 0 CommentsSave Tags: .net, frameworks, tools
Updated ClassCleaner and ClassCleaner Refactor!Pro Menu for DXCore 2009.2.8
Its that time again! DevExpress has released an update to their Developer Productivity Tools suite which means that several plugins need to be... more »
Tweet 0 CommentsSave Tags: .net, how-to, tools
MPI Project Template for VS2010
If you are developing MS MPI applications with Visual Studio 2010, you are probably tired of following some tedious steps for every new C++ project... more »
Tweet 0 CommentsSave Tags: .net, c-and-cpp, tools
Developing for Windows Mobile – Mobile XAML?
I’ve now included a “first cut” XAML parser (ultra simplistic) within v0.2 of my Mobile UI Framework.
Neat VS10 Feature: Pinning A Debugger Watch
I was stepping through some code in a debugger today and noticed a neat little feature of Visual Studio 2010 that I hadn’t noticed before. When... more »
Tweet 0 CommentsSave Tags: .net, how-to, tools
Using serialized JSON to move complex data to and from the browser
Jarod and I have both been working on a FubuMVC application for one of our Guild 3 clients. It’s been great to have the opportunity to work with a... more »
Tweet 0 CommentsSave Tags: .net, frameworks, how-to, javascript
Detect Recursive Calls in Your .NET Code
Here's a way you can check whether the current method is recursive. The following method returns True when your application is in a recursive method
Tweet 0 CommentsSave Tags: .net, how-to
Quickly Determine Whether a Column Is Fully Visible in a DataGridView
It's easy to determine whether a DataGridView column is invisible—just check its Boolean Displayed property. However, the Displayed property returns... more »
Tweet 0 CommentsSave Tags: .net, frameworks, how-to
Foreign Key Relationships in the Entity Framework
Last March Alex James posted to our design blog about our plans for adding foreign keys to the entity framework. Since then we’ve pushed forward with... more »
Tweet 0 CommentsSave Tags: .net, frameworks, how-to
Create ASP.NET Dynamic Hyperlinks from URLs Stored in Web.Config
Consider storing any URLs used by your application in the web.config file—where you can easily update them—and then using them to create hyperlinks in... more »
Tweet 0 CommentsSave Tags: .net, frameworks, web design
DataAnnotations not in the client profile
In Visual Studio 2010 and .NET 4.0 Microsoft is amping up the visibility of the “client profile” concept. In fact, when you install the 4.0 client... more »
Tweet 0 CommentsSave Tags: .net, trends
Links collection - QA, QTP, Web Development, C#.Net , Excel and Others
Links collection - QA, QTP, Web Development, C#.Net , Excel and Others
Some interesting software technology trends
Google search trends and Job trends for some software technologies.
Tweet 0 CommentsSave Tags: .net, java, trends
Ajax Cascading Dropdown
Javascript based Asp.Net Ajax dropdown The following is highly performance oriented approach. The data is transferred from web server to client using... more »
Tweet 0 CommentsSave Tags: .net
Query Two Databases
Query across two different databasesI ran few times into this kind of situations, when I need to read two different databases and present it in single... more »
Tweet 0 CommentsSave Tags: .net
How Do I: Use CollectionViews to Sort and Filter Data (Video)
Like Dataviews, CollectionViews can be used to sort and filter data without having to change the underlying default view of the data. In this video,... more »
Tweet 0 CommentsSave Tags: .net, frameworks, how-to, microsoft
LINQ Custom Providers
Includes a link to a presentation I will be giving tomorrow about LINQ custom providers, and then uses this as a launching off point to discuss how... more »
Tweet 0 CommentsSave Tags: .net
Sproc Executing Slow? It Might be This
So you have stored procedure and it’s having issues. When you run it, it returns really fast. When .NET runs it, its like a dog. The first thing you... more »