User Id :    Password :      New Member   Forgot Password
DotNetLogiX
A place to serve software developers with the latest Microsoft technologies by providing them various technical articles, code snippet, tutorials and technology related news. To discuss day to day programming problems we have also provided discussion board/forum to provide immediate and better solution.

Tuple in C# 4.0
C# 4.0 language includes a new feature called Tuple. Tuple provides us a way of grouping elements of different data type. That enables us to use it a lots places at practical world like we can store a coordinates of graphs etc.
Posted on :  17 May 2012   by Jalpesh Vadgama  | Views :  51 Article
Difference between SkipWhile and Where in linq
Before some time I have written a blog post about the SkipWhile operator and a reader of my blog asked me that we can do the same thing with Where also but there is a difference between this two. So In this post I am going to explain you difference between those two.
Posted on :  17 May 2012   by Jalpesh Vadgama  | Views :  64 Article
Extension Methods in C#
Method allow programmer to "add" methods to existing types without creating a new derived type, recompiling, or by modifying the original type. Methods are static methods they are called as if they were instance methods on the extended type.
Posted on :  16 May 2012   by Pranay Rana  | Views :  70 Article
Get the Way of Reflection
What is Reflection? How we use Reflection? What are the advantages of using Reflection? Get the way of saving memory by using Reflection.
Posted on :  09 May 2012   by Rahul Saxena  | Views :  60 Article
How to upload file in ASP.NET MVC3
If you are a web developer you often need to upload file on the web server or database. In this post I am going explain how we can upload file in ASP.NET MVC 3 with razor syntax.
Posted on :  06 May 2012   by Jalpesh Vadgama  | Views :  414 Article
Generic Code of Validating Fields with Jquery
Generic Code of Validating Fields with Jquery
Posted on :  23 Apr 2012   by Pranay Rana  | Views :  270 Article
New solution explorer feature in visual studio11 developer preview
New solution explorer feature in visual studio11 developer preview
Posted on :  18 Apr 2012   by Jalpesh Vadgama  | Views :  233 Article
Using TryParse Methods in C#
TryParse methods which is provided by the .net framewok is one of the important method when you are converting string data into perticular primary datatype and wants to verify that it is convertable in given type or not.
Posted on :  12 Apr 2012   by Pranay Rana  | Views :  161 Article
C# generics with primary datatype
Generic is feature which is useful when you have set of types which is going to perform some set of the functions which are same but the output differ from one type to another type.
Posted on :  11 Apr 2012   by Pranay Rana  | Views :  115 Article
Increase Linq query performance by Compling it
In this article I will show how you can increase Linq query performance by Compling it
Posted on :  29 Mar 2012   by Pranay Rana  | Views :  315 Article
Redirection in URL Routing
In one of the my earlier post I have written How easily we do URL rewriting in ASP.NET Web forms. In this post I am going to explain redirection in URL Routing.
Posted on :  17 Mar 2012   by Jalpesh Vadgama  | Views :  195 Article
Easy URL routing in ASP.NET 4.0 web forms
In this post I am going to explain URL routing in greater details. This post will contain basic of URL routing and will explain how we can do URL routing in fewer lines of code.
Posted on :  28 Feb 2012   by Jalpesh Vadgama  | Views :  162 Article
URL–New HTML5 input element
In earlier post we have seen how the email input tag work in the browser. HTML5 comes with lots of new goodies and today we are going to see one of another new html5 input types URL.
Posted on :  21 Feb 2012   by Jalpesh Vadgama  | Views :  156 Article
Number : A new Input type in HTML5
I have been writing few series of new HTML5 input types and this is another post on same series. In this post I am going to explain Number input types. The number type is for numeric values. When you use number input type it will have spinner with up and down arrow and with the help of this you can increase or decrease of value.
Posted on :  20 Feb 2012   by Jalpesh Vadgama  | Views :  141 Article
Get current zone time using GETUTCDATE() function in instance of SQL Server.
Sometime we need to get the current datetime of the system where the instance of SQL server(client) is running regadless of SQL server placed in other country or different time zone. Here I will explain how you can get local datetime where the client(instance of the SQL server) is running.
Posted on :  17 Feb 2012   by Najmul Hoda  | Views :  87 Article
ASP.NET Error Handling: Creating an extension method to send error email
ASP.NET Error Handling: Creating an extension method to send error email
Posted on :  05 Feb 2012   by Jalpesh Vadgama  | Views :  209 Article
How to exposing custom event from custom control in asp.net
In this post I m going to discuss about registering custom event in custom control in asp.net
Posted on :  29 Jan 2012   by Pranay Rana  | Views :  258 Article
Extend your existing classes with extension method in asp.net 3.5
Extend your existing classes with extension method in asp.net 3.5
Posted on :  24 Jan 2012   by Jalpesh Vadgama  | Views :  282 Article
C# introduces a concept known as Indexers
Which are used for treating an object as an array
Posted on :  10 Jan 2012   by Gaurav  | Views :  385 Article
MyCollegeMyFriend - An Open Source Project developed using ASP.NET 2.0
MyCollegeMyFriend is a small but open source project developed using ASP.NET 2.0 and C#.
Posted on :  27 Dec 2011   by Rahul Saxena  | Views :  1159 Article
Using IN clause to search in multiple columns of a table in SQL Server
Its possible to search a text in multiple columns of a table in SQL Server using a single IN instead of using multiple OR command.
Posted on :  26 Dec 2011   by Najmul Hoda  | Views :  1111 Codesnippet
Get comma seperated values instead of resultset in sql server
Get comma seperated values instead of resultset in sql server
Posted on :  12 Dec 2011   by Najmul Hoda  | Views :  413 Article
How to check table structure in SQL server 2008
How to check table structure in SQL server 2008
Posted on :  05 Dec 2011   by Najmul Hoda  | Views :  692 Article
Month and Year Picker UserControl
Month and Year Picker UserControl
Posted on :  04 Dec 2011   by Pranay Rana  | Views :  454 Article
Database operations in WPF application
In this article I demonstrated a small project report on School management System in WPF.
Posted on :  26 Nov 2011   by Rahul Saxena  | Views :  482 Article
Store Page ViewState in Session with asp.net
Store Page ViewState in Session with asp.net
Posted on :  26 Nov 2011   by Jalpesh Vadgama  | Views :  341 Article
Default Extension methods
In this post I am going to discuss about Default extension method(s) which are use full when we query the data form the collection,array or performing operation while code using linq to sql.
Posted on :  26 Nov 2011   by Pranay Rana  | Views :  281 Article
How to use DataLoadOptions in Compiled Linq query
In this article I am going to explain how to use DataLoadOptions in Compiled Linq query
Posted on :  18 Nov 2011   by Pranay Rana  | Views :  298 Article
ASP.NET MVC 4.0 Mobile Template
Microsoft has released the much awaited ASP.NET MVC 4.0 developer preview and there are lots of features bundle with it.
Posted on :  05 Nov 2011   by Jalpesh Vadgama  | Views :  1064 Article
Magnifying Glass Effect in Silverlight
Magnifying Glass Effect in Silverlight
Posted on :  04 Nov 2011   by Rahul Saxena  | Views :  498 Article
Social Networking Website in ASP.NET - Open Source Project
The attached project is an open source social networking Web application project written in ASP.NET 3.5 and C#. Some of the features are for creating profiles, searching users, making friends, chatting and communication.
Posted on : 23 Jun 2011  by Rahul Saxena
Discount ASP.Net