Click here to Skip to main content
Page 1 of 3
Page Size: 10 · 25 · 50


License filtered by: The Creative Commons Attribution-ShareAlike 2.5 License [x]
Technical Blog 29 Sep 2011   license: CC (ASA 2.5)
Today I came across a situation where I had a display a list of combo boxes inside a part of a complicated tab based form. The model of the view was a different object then this particular section I was trying to render. I had a different controller action to do the updates. After googling [...]
Technical Blog 20 Sep 2011   license: CC (ASA 2.5)
This post is about the anti-corruption layer between domain objects and data persistence in the Azure world.
Technical Blog 16 Sep 2011   license: CC (ASA 2.5)
Lured with “MetroUI” and “ARM processor support”, I dont want to wait until next year for RTM release.  Downloaded 64-bit Developer Preview with Development Tools from http://snip.udooz.net/qNCs4G.EnvironmentI believed that Windows Virtual PC could be the only choice to insta
Technical Blog 16 Sep 2011   license: CC (ASA 2.5)
To get to know much about developing Facebook applications using a server side, I have chosen with Koala for Rails.  For .NET, Facebook C# SDK is being well supported by Microsoft also (http://facebooksdk.codeplex.com/).  In this post, I explain how to use Koala in your Rails applications.  As any F
Technical Blog 16 Sep 2011   license: CC (ASA 2.5)
WCAT (Web Capacity Analysis Tool) is a tiny but excellent tool from Microsoft to perform load test your web application on IIS.  This tool enables you to do performance analysis on various scenarios of your web application.  All “perfmon” performance counters (like processor time, privat
Technical Blog 16 Sep 2011   license: CC (ASA 2.5)
Your Azure Web Role and Full IIS – Culture Changes
Article 29 Mar 2011   license: CC (ASA 2.5)
JVM code can be just as fast as the equivalent native code: Why and How.
Article 29 Mar 2011   license: CC (ASA 2.5)
Having spent far too much time benchmarking different code recently, here are some lessons learned!
Technical Blog 24 Mar 2011   license: CC (ASA 2.5)
SummaryBelow is an example of how to write a custom LogParser input plugin, using SharpSvn to query an svn repository.Download the LogParser.Svn project here. You will need Visual Studio 2010 Express to build it. Make sure that the build tab in the project properties has "Register for COM interop" c
Technical Blog 10 Mar 2011   license: CC (ASA 2.5)
A simple console application to convert the fixed-width output from the "Output to File" option in SQL Server Management Studio to a CSV file.
Technical Blog 10 Mar 2011   license: CC (ASA 2.5)
A utility written in C# that you can use to upload files to a code.google.com project.
Technical Blog 10 Mar 2011   license: CC (ASA 2.5)
An easy way to do an AJAX call to another domain
Article 30 Dec 2010   license: CC (ASA 2.5)
Explains how to define internal DSL using C# language constructs
Technical Blog 26 Dec 2010   license: CC (ASA 2.5)
Domain Specific Language using C# 4.0 - Part 1
C#
Technical Blog 26 Dec 2010   license: CC (ASA 2.5)
Domain Specific Language using C# 4.0 - Part 2
C#
Technical Blog 23 Dec 2010   license: CC (ASA 2.5)
Determined Interaction
Technical Blog 23 Dec 2010   license: CC (ASA 2.5)
In the previous post, we have seen the service configuration of WCF federation. In this post, let us see the STS configuration.
Technical Blog 15 Dec 2010   license: CC (ASA 2.5)
WCF Claims, STS and Federation – Layman’s View
Technical Blog 13 Dec 2010   license: CC (ASA 2.5)
Cumbersomeness Web.Config
Technical Blog 13 Dec 2010   license: CC (ASA 2.5)
IIS 7.0 and WAS: A Primer
Technical Blog 13 Dec 2010   license: CC (ASA 2.5)
Beware of SCA if you are in WCF
Technical Blog 13 Dec 2010   license: CC (ASA 2.5)
C# 4.0 Crash Course: Optional and Named Parameter
Article 15 Nov 2010   license: CC (ASA 2.5)
A quality rendered Outlook style navigation pane control
Article 30 Sep 2010   license: CC (ASA 2.5)
This article explains how to generate, convey and handle warnings in SOA system.
Article 30 Sep 2010   license: CC (ASA 2.5)
This article explains how to generate, convey and handle warnings in SOA system.
Article 10 Aug 2010   license: CC (ASA 2.5)
This article demonstrates how to upload files and folders recursively from a local folder to Microsoft SharePoint Foundation site using the Object Model.
Technical Blog 15 Jul 2010   license: CC (ASA 2.5)
Microsoft was awesome enough to actually allow us to create our own dynamic types by simply inheriting from the DynamicObject class. This post looks at how we can create a semi-dynamic object by handling the binding methods ourselves.
Article 18 Jun 2010   license: CC (ASA 2.5)
COBOL already has SEARCH ALL, but what if you want to find table values which bracket a searched value - here is the solution.
Article 28 May 2010   license: CC (ASA 2.5)
Modernizing procedural COBOL can be done in little steps, each one making a bit difference
Article 25 May 2010   license: CC (ASA 2.5)
A 101 on writing a compiler - a Managed COBOL compiler which compiles Brainf**k (a very simple language) to Managed COBOL
Technical Blog 23 May 2010   license: CC (ASA 2.5)
Trust issues with source code
Technical Blog 19 May 2010   license: CC (ASA 2.5)
 Sometimes things don't work out the waywe expect!Micro Focus Managed COBOL has a powerful and flexible exception handling system evolved from similar systems in Java, VB and C#. Here is a quick introduction.The 2002 standard for COBOL did introduce an exception handling mechanism. However, this mec
Technical Blog 19 May 2010   license: CC (ASA 2.5)
Rolling Out The Big Guns - Micro Focus Managed COBOL Does Generic Delegates.Delegates are a managed code way of implementing methods by reference. In C these things are called function pointers. However, function pointers are just plane dangerous (they cause things to crash and lack much in the way
Technical Blog 19 May 2010   license: CC (ASA 2.5)
 Do you know the difference betweena value type and a class? Don't get yourself into deep water!Manage COBOL from Micro Focus not only support classes but also another, very interesting data type called a "Value Type". Here is what you need to know about them:Value Types are a lot like classes, but
Technical Blog 5 Apr 2010   license: CC (ASA 2.5)
Adding UserControls inside of a Web Application project can tend to be a pain. You either have to register the control on each of the pages you want to use them in or add each name and path into the system.web/pages/controls section of your web.config.
Technical Blog 30 Mar 2010   license: CC (ASA 2.5)
I’m feeling a bit guilty about some code I wrote: using (new OperationTimer("MyOperation", this)){ // ... complete operation} This innocent looking C# snippet is hiding a tricky secret - the using statementis being misused (no pun intended).  The documentationdefines the int
Article 20 Mar 2010   license: CC (ASA 2.5)
A generalized code block which can be used in a common scenario for simple performance benchmarking.
C#
Article 11 Mar 2010   license: CC (ASA 2.5)
Base practice code for those preparing the exam 70-536 or learning the .NET framework basis
Technical Blog 10 Feb 2010   license: CC (ASA 2.5)
An article about using MongoDB With Visual Studio
Article 2 Feb 2010   license: CC (ASA 2.5)
Using the latest versions of COBOL, this venerable language becomes completely type safe via generics - shown by example.
Technical Blog 1 Feb 2010   license: CC (ASA 2.5)
Ever since setting up our CruiseControl.NET server for our internal projects, I wanted to integrate a Gendarme run to catch all those nasty little things that slip through, like not checking arguments for null...
Article 19 Jan 2010   license: CC (ASA 2.5)
VBScript may be old and ugly, but there are some quick and dirty tricks for which it is still really handy.
Article 19 Jan 2010   license: CC (ASA 2.5)
How about a .NET COBOL program which uses ADO.NET to connect to either MySQL or SQL Server?
Article 19 Jan 2010   license: CC (ASA 2.5)
How to and the benefits of tightly integrating scripting with native Micro Focus COBOL to produce more customisable and flexible applications.
Article 18 Jan 2010   license: CC (ASA 2.5)
The introductions of Tuples (originally to support F#) into .NET shows a possible way to use polyadic returns in C#, COBOL etc., without syntax enhancement.
Technical Blog 15 Jan 2010   license: CC (ASA 2.5)
Some simple external templates with jQuery
Article 14 Jan 2010   license: CC (ASA 2.5)
Working with modern technologies like WPF is made a whole lot easier if you have nice features like anonymous deletegates, here is how use them in COBOL.
Article 14 Jan 2010   license: CC (ASA 2.5)
They might seem like just another not entirely required feature, but actually table variables are a very handy extension to SQL Server
Technical Blog 13 Jan 2010   license: CC (ASA 2.5)
This post goes over a sample scenario where you might use delegates as arguments instead of writing multiple functions to perform different tasks.
Technical Blog 13 Jan 2010   license: CC (ASA 2.5)
Inthe highly complex and interconnected contemporary world, computersand humans interact continuously. We need a modelling approach whichcan shed light on the similarities between different players of thisinteraction rather than sub-divide this interconnected world intoartificially specialist domain

Page 1 of 3
1 2 3


Advertise | Privacy | Mobile
Web03 | 2.6.130513.1 | Last Updated 15 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid