home » people » Vijjendra

Vijjendra

Vijendra Shakya

Profile

Name:
Vijendra Shakya
Location:
N/A
Bio:
This is Vijendra Singh Shakya.
Interests:
Watching cricket,Cooking.

Community info

Member since:
11/29/2008 6:26:22 AM
Rank:
3
Role:
Member
Total Posts:
51
Total points:
2313

Personal Information

Favorite Music:
N/A
Favorite TV Shows:
No time for TV shows.
Favorite Books:
Harry Potter.
Favorite Cuisines:
None
Occupation:
Programmer
Sex:
Male
Industry:
Loading ...

Confirm

  • Implement: Paging in Repeater or Datalist Control
    As we all knows that Repeater and DataList does not have auto paging support technique like Gridview or Datagrid, but we can achieve this through PagedDataSource. By using PagedDataSource we can implement paging in Repeater or DataList. Now in our mind there is question arise what is PagedDataSource. PagedDataSource is a class which encapsulates
    11/18/2009 2:57:05 PM - Comments: 0
  • Auto Refresh data using AJAX in ASP.NET
    In this article, I am discussing how we can refresh data on an ASP.NET data representation control. i.e data representation control automatically refreshes after a certain interval using AJAX Update Panel and other controls. I am using Ajax controls and using SQL server 2005 database and repeater control. My Database and table name is User.
    3/25/2009 5:51:29 AM - Comments: 6
  • Find Maximum value from an Enum
    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(I...
    11/29/2009 12:11:22 AM - Comments:2
  • What is Paged DataSource?
    PagedDataSource is a class which encapsulates the paging related properties which is required to perform paging in data bound control like Repeater/DataList. PagedDataSource class comes under System.Web.UI.WebControls namespace. PagedDataSource con...
    11/12/2009 8:47:17 AM - Comments:0
  • Find Date after a given week(s) or month(s)
    Here I am discussing to find date after a given week or months.For example I want to find the date after 1 week or 2 months from today.Find date after 2 week or 2 months then we can achieved this as like: DateTime dateTime = DateTime.Now.AddDays(14); /...
    11/4/2009 4:53:20 AM - Comments:0
  • Find Enum Name from Value
    Here I have discuses find name of Enum from Enum value. I have a Enum like: public enum EnumName { Vijendra=1, Singh=2, Shakya=3 } I have the value of this Enum in my database table, when I fetch that value from database then we want to ...
    10/30/2009 2:33:30 PM - Comments:0
  • Auto refresh page
    Here I have discussed how we auto refresh page and why we need to auto refresh the page.Page is Auto refresh means forcing a page to post back without user input. Following are the main reason to auto refresh the page.1. Redirecting to a new URL after ...
    10/6/2009 7:54:16 AM - Comments:0
  • Bind Repeater With ArrayList
    Many times we want to bind the Repeater with ArrayList.We can use Data Source property of Repeater for binding with Array List.Following is HTML page code: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" Ti...
    9/29/2009 12:01:47 PM - Comments:0
  • Difference Between COALESCE() AND ISNULL()
    In SQL many times we have null values and we wants return another value, for that purpose in SQL there is two methods:1. COALESCE()2. ISNULL() COALESCE() : It is ANSI standard function, and takes 2 or more number of parameters and each value can be of dif...
    7/19/2009 2:15:10 AM - Comments:1
  • What is SQLCommand Objects in ADO.NET
    To execute the SQL Query or Storeprocedure, we use the SqlCommand object.We use the SqlCommand object as follows: // create the SqlCommand object String sqlQuery=”Select * from User”; SqlCommand cmd = new SqlCommand (sqlQuery, con); another way is: SqlCom...
    7/12/2009 10:30:38 AM - Comments:0
  • Difference between Literal and Label in ASP.NET
    Literal Control: It is used to display data; it is lightweight and does not make any formatting techniques. Literal control will render only its text which is assigned in its text property. For example: <div><asp: Literal ID="Literal1" runat="ser...
    7/6/2009 7:11:13 AM - Comments:0
  • How To Rename ColumnName in SQL
    Many times there is needed to change the column name of table.So, we can change the column name of the table as follow:Sp_Rename 'TableName.OldColumnName','NewColumnName','Column' Here Column is the keyword. Hope it will help to all…
    7/2/2009 9:27:15 AM - Comments:0
10 people found.