ASP.NET Community
Who is online?
53
guests and
0
members
Member login
|
Become a member
home
articles
forums
blogs
videos
jobs
events
wiki
spaces
people
login
register
home
»
people
» Vijjendra
Vijjendra
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:
wall
forums
articles
blogs
friends
events
videos
Loading ...
Confirm
Post Subject
Replies
Views
Last Post
How to find the query is optimised or not?
by
Vijjendra
in
Data Access
4
200
2/22/2010 4:35:20 AM
by:
naval198409
List of all tables
by
kevin
in
Data Access
4
183
2/17/2010 5:39:42 AM
by:
yrbyogi
Remember Password
by
Ankita
in
Web Forms / Data Controls
2
658
2/17/2010 5:34:35 AM
by:
yrbyogi
repeater
by
sonia
in
Getting Started / General ASP.NET
1
86
2/3/2010 4:04:43 AM
by:
Vijjendra
What is difference between strong and b html tag
by
Vijjendra
in
Client Side Web Development
5
641
1/6/2010 12:11:14 PM
by:
miya2008
Generate controls at run time.
by
naval198409
in
Web Forms
6
482
12/30/2009 2:10:02 AM
by:
raghav_khunger
what is the use of page_init?
by
sandeepchug
in
Getting Started / General ASP.NET
2
426
11/29/2009 1:34:21 PM
by:
raghav_khunger
Validate a date in dd-MMM-yyyy format
by
stanley
in
Client Side Web Development
1
159
11/16/2009 9:49:17 AM
by:
Vijjendra
Related To Sql server database
by
naval198409
in
FAQ - Frequently Asked Questions
4
170
11/14/2009 12:41:20 PM
by:
raghav_khunger
How to call codebehind file with javascript
by
stanley
in
Client Side Web Development
2
340
11/12/2009 1:28:24 PM
by:
raghav_khunger
View all
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
View all
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
View all
Vivek Thakur
Contributor (3325 points)
Vinay Gupta
Starter (1936 points)
Tim Eisenhauer
Contributor (2149 points)
Sumit Arora
Starter (765 points)
Shaitender singh
Starter (1110 points)
mohit kumar
Starter (776 points)
idrees ahamad
Lurker (20 points)
Deepak Nigam
Lurker (65 points)
Asif Qadri
Lurker (27 points)
akhilesh singh
Lurker (0 points)
10 people found.
View all