Monthly Archive:: August 2013
14 Aug 2013
ASP.Net Tutorials For Beginners
ASP.NET is a development framework for building web pages and web sites with HTML, CSS, JavaScript and server scripting. ASP.NET supports three different development models. They are 1. Web Pages, 2. MVC (Model View Controller) 3. Web Forms Web Pages: Single Pages Model Simplest ASP.NET model. Similar to PHP and classic ASP. Built-in templates and
13 Aug 2013
C#.Net – Generate new guid in C#.Net | GUID Generator in C#.Net
GUID stands for Globally Unique IDentifier. It is a string of numbers and/or letters. For those of you who don’t know, a GUID (pronounced goo’id – Globally unique identifier) is a 128-bit integer that can be used to uniquely identify something. You may store users or products in your database and you want somehow uniquely
08 Aug 2013
Pagination Query in Sql server
I was asked a question or a series of questions, “How would you do paging in a SQL? How would you do this with a lot of records, say, 10,000 or more?” I thought about answers. To be more precise, I thought of more questions and this got me thinking, “This must be a common
08 Aug 2013
Sql Query to fetch in between records from a table
In this article i am going to expalin the query used to fetch the inbetween records from a table For example if my requirement is to fetch from 30th to 50th record from citymaster table then i can use the below query. We can achieve it using OFFSET FETCH clause.The OFFSET-FETCH clause provides you with
08 Aug 2013
C# Extension Methods Example
In this article i am going to explain about Extension Methods with example. Extension methods enable you to “add” methods to existing types without creating a new derived type, recompiling, or otherwise modifying the original type. Extension methods are a special kind of static method, but they are called as if they were instance methods on