Category Archives: .NET

PHPHOST BLOG

Web Hosting Related Articles You May Need

Celebrating the 1st Anniversary of our Free .NET Magazine with Prizes

Some of you may already know about out Free Digital Magazine for .NET professionals that we publish every alternate month. This magazine contains exclusive .NET articles covering some of the latest .NET Technologies and interviews with .NET Experts lik… Continue reading

Posted in .NET, Free Learning, Syndicated | Comments Off on Celebrating the 1st Anniversary of our Free .NET Magazine with Prizes

Debugging Parallel Code in Visual Studio 2012

.NET 4.0 introduced the Task Parallel Library (TPL) and Parallel LINQ (PLINQ) in an attempt to make parallel programming simpler and making best use of multi-core processors easier.

Recently I was playing around with the Parallel.Foreach and the new … Continue reading

Posted in .NET, Syndicated, Visual Studio | Comments Off on Debugging Parallel Code in Visual Studio 2012

Model Binding in ASP.NET 4.5

In this article, we will explore a new feature introduced in ASP.NET 4.5 called Model Binding which displays data on our WebForms using the SelectMethod attribute of a data bound control. We will also see how to filter data using Value Provider Attribute Eg: [QueryString].

A couple of days ago, I had written an article on “Strong Typed Data Controls in ASP.NET 4.5” which demonstrated a new way Continue reading

Posted in .NET, ASP.Net, Syndicated | Comments Off on Model Binding in ASP.NET 4.5

Scrutinizing SharePoint 2013 Application Development Models

The new version of Microsoft’s SharePoint document management platform is the latest SharePoint 2013 App. Well, you might be quite familiar with the recent gossips about this state-of-the-art application development model included in the Microsoft&#8… Continue reading

Posted in .NET, Sharepoint, SharePoint 2013, SharePoint 2013 Development, SharePoint Application Development, Syndicated | Comments Off on Scrutinizing SharePoint 2013 Application Development Models

Perform CRUD Operations using OData Services in .NET

In this article, we will see how to perform CRUD Operations using OData Services in .NET applications.

OData (Open Data Protocol) is a web protocol for performing CRUD operations which is built upon web technologies like HTTP, Atom Publishing Protoco… Continue reading

Posted in .NET, C#, Syndicated, WCF | Comments Off on Perform CRUD Operations using OData Services in .NET

Calling ASMX web service via JQuery ajax

In this article, I want to show how one can call ASMX web service from his or her JQuery client code and also show the subtle issues that he or she might encounter. To be more specific, I want to show how to pass a JavaScript object to an ASMX web service method and get […] Continue reading

Posted in .NET, AJAX, ASMX, jQuery, JSON, Syndicated, web service | Comments Off on Calling ASMX web service via JQuery ajax

Task based WCF Services in .NET 4.5

Task based asynchronous programming is now simplified and streamlined in .NET 4.5 through the use of keywords ‘await’ and ‘async’. These keywords help makes asynchronous code look similar to synchronous coding, making it easier to write and understand Asynchronous code. Those who have used WCF service might have used the Asynchronous contract generation while adding WCF service reference in the Continue reading

Posted in .NET, Syndicated, WCF, WPF | Comments Off on Task based WCF Services in .NET 4.5

A Free .NET Magazine for Developers and Architects

A couple of months ago, on DotNetCurry.com, we started the ‘DNC Magazine’,  a FREE, bimonthly (once every 2 months) digital publication bringing you the latest from the .NET world presented by Microsoft MVP’s and industry veterans.

We are three editions old and so far, we have covered topics like C# 5, ASP.NET, MVC, SharePoint, Azure, TDD, Visual Studio, VS ALM, Entity Framework, HTML5, jQuery, Continue reading

Posted in .NET, Free Learning, Syndicated | Comments Off on A Free .NET Magazine for Developers and Architects

ReadOnlyDictionary in .NET 4.5

Yes! For people doing custom implementation to create a Read Only Dictionary, there is now a .NET BCL implementation of the same in .NET 4.5. For the Uninitiated the question is – Why do you need a ReadOnlyDictionary in the first place?A ReadOnlyDictio… Continue reading

Posted in .NET, C#, Syndicated | Comments Off on ReadOnlyDictionary in .NET 4.5

Zip Archives Become a First class citizen in .NET 4.5

Compression in the .NET framework has been supported via different libraries in the past (via Open File Conventions) but the support for .zip archives hasn’t quite been complete. With .NET 4.5 we get a dedicated zip compression library that allows us to manipulate zip libraries fully.

Introduction

Up until now, compression in .NET was supported only to the extent of supporting Open File Continue reading

Posted in .NET, C#, Syndicated | Comments Off on Zip Archives Become a First class citizen in .NET 4.5