One of friend today ask how we can sort data table based on particular column? So I thought it’s a good idea to write a blog post about it. In this blog post we learn how we can learn how we can sort database with LINQ queries without writing much more long code. So let’s write a code for that.
using System;
using System.Data;
namespace ConsoleApplication1
{
class Program
{
static...
Thursday, May 23, 2013
Wednesday, May 22, 2013
Replace line breaks in C#
In recent days I was working on a project want to replace \r\n to a new character but it was giving very strange behaviour. It was not replacing proper. Let’s create that scenario. I have written following code.
using System;
namespace WebApplication1
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
...
Friday, May 17, 2013
Visual Studio 2012 Tip- Closed All But Pinned feature
Visual studio 2012 is one of best IDE I have ever used. Everyday I am discovering something new with that IDE which is more productive. Today I have discovered “Closed All But Pinned” feature. I thought It’s a good idea to write a quick tip post.
Problem with Earlier Version:
Earlier we used to...
Monday, May 6, 2013
Unobtrusive validations in ASP.Net 4.5 Web Forms
With the release of ASP.Net 4.5 web forms there are tons of features added in the ASP.Net and Unobtrusive validations support is one of them. We have already seen that kind of validation in ASP.Net MVC and now we are going to have that in ASP.Net web forms. In this post I am going to explain how its works and how its different from earlier versions.
How validation was working with earlier...
Saturday, May 4, 2013
Simple data binding with Knockout, Web API and ASP.Net Web Forms
In this post We are going to see How Knockout, ASP.Net Web API and ASP.Net works together smoothly. There are lots many examples of ASP.Net MVC,Web API and Knockout.js available on web working together nicely. So I thought it will be a good idea to write a blog post about how ASP.Net Web API, ASP.Net Web Forms,Knockout.js works together and how we can create simple data binding with Knockout.js.
ASP.Net...
Friday, May 3, 2013
Server.Map alternative in WCF - HostingEnvironment.MapPath
If you are ASP.NET programmer then you already know about Server.MapPath. It is used to map a physical location on webserver for asp.net. You can find more information about Server.MapPath from the following location.
http://msdn.microsoft.com/en-us/library/ms524632(v=vs.90).aspx
You can still use that in WCF(Windows Communication Foundation) service http bindings. As we know WCF Service...
Global Windows Azure boot camp 2013–Ahmedabad
Recently before few days Ahmedabad User Group and Microsoft has organized A windows Azure boot camp event on April 27,2013. As an Ahmedabad User Group member I was there and it was amazing event. This post is about to share my experience with Event.
What is Windows Azure:
Windows azure is a Microsoft...