home » blogs » Vijjendra » What is Paged DataSource?
  Rate This Blog Entry:  register  or  login

Author

Vijjendra Vijjendra (Member since: 11/29/2008 6:26:22 AM)
This is Vijendra Singh Shakya.

View Vijjendra 's profile

Comments (no comments yet)

Leave a comment

Name:
  *  
Email:  (your email is kept secure)
 *  
Website:

example: "http://codeasp.net"

 
Type the characters:
 *
 
   

Join CodeAsp.Net for FREE Today!

It's fast, easy and free! Submit articles, get your own blog, ask questions & give answers in the forums, and become a better developer, faster.

enter your email address:

Blogs RSS Feed

Vijjendra's latest blog posts

  • Calculate Business days in ASP.NET C#
    6/17/2010 9:30:58 PM
    Download Sample Project Many times we want to find out the next business (working) date after “N” business days. In this blog I have described how to find out the next business date after “N” business...
  • Delete,Truncate All Table's data from Database in SQL Server
    6/14/2010 8:38:39 PM
    In this blog I have discussed about how to Drop all the user defined table from the database OR Select/Delete/Truncate data from all the database tables OR alter the entire database table in one comma...
  • Find Leap year in ASP.NET(C#)
    6/10/2010 8:27:44 PM
    Leap year a year which have the 1 extra day from normal year, in leap year February have 29 days, in normal February have 28 day. Leap year has 366 days but normal year have 365. To find the given yea...
  • Generate BarCode in ASP.NET
    5/4/2010 7:31:24 PM
    Barcode is a machine readable representation of data, which contains the data information. Basically barcode contains data information in parallel line. The most popular of barcode used font is “3 of ...
  • Find Maximum value from an Enum
    11/29/2009 12:11:22 AM
    Here I have discussed find the maximum value from enum. Suppose we have an enum like: public enum TestEnum { A=1, X=2, E=3, R=4, O=5 } if our enum have values like above(Incremented by one),then we ca...
Blogs RSS Feed

Latest community blog posts

  • C#: Find the maximum key from a dictionary
    7/25/2010 2:43:42 PM  by raghav_khunger
    Yesterday a person asked on the forums on how to find the maximum key from a dictionary. He needs to perform some logic after finding the maximum key so I gave him the solution to use Max of LINQ. Bel...
  • Literal control in ASP.NET
    7/21/2010 9:16:37 PM  by mohit
    In this blog I will explain Literal control in ASP.NET. The Literal control used to display static text on a web page. Literal control is not rendered as a <span> tag like label control. The Lit...
  • Calculate First and Last Day of Month
    7/21/2010 3:43:42 PM  by hajan
    This is pretty simple, but a bit tricky for those that haven't tried it yet, so I would like to document it here :). You may be in need to calculate the first or last day of the month in your ASP.NET ...
  • Checking the existence of dictionary keys
    7/20/2010 3:31:31 PM  by hajan
    Dictionary is an interesting mechanism which provides us very good way to associate keys and values on a simple manner. Key/Values can be of any type. I won't get into explaining what is (or what is n...