Loading ...
ASP.NET Articles | CodeAsp.Net
Who is online?
0
guests and
0
members
Login
|
Register
home
articles
forums
blogs
videos
jobs
events
wiki
people
login
register
home
»
articles
» featured
Create a New Article
Communifire Articles
Topics
Most recent articles
Featured articles
.NET
Design Patterns
ASP.NET
Hardware
JavaScript
Design Pattern
Windows
Quick Vote
What kind of email newsletter would you prefer to receive from CodeAsp.Net?
18
A monthly digest
A weekly digest
A daily digest
All of the above
None of the above
Featured Articles
ASP.NET Page Lifecycle
I have tried to explain relevant events in the Page lifecycle and their importance with some gotchas. I will keep updating this article with more tips and tricks, besides readers are welcome to point out mistakes and suggest corrections and give feedback!...
Vivek Thakur
· 1/12/2012 ·
12
·
57895 ·
share
Design Pattern: State design pattern
The State pattern allows an object to change its behaviour when its internal state changes. This pattern comes under Behavioral Patterns section. This pattern is used to represent the state of an object. By "internal state changes" it means, the object wi...
Raghav Khunger
· 1/1/2012 ·
1
·
2274 ·
share
JavaScript Design Pattern: Publisher Subscriber Pattern
This pattern enables to build agile software architecture by decoupling items/objects which produce information and items/objects which consume it. The publisher/subscriber pattern is a software design pattern in which an object, called the subject, maint...
Raghav Khunger
· 9/24/2011 ·
4
·
3355 ·
share
How to use log4net in ASP.NET
The Apache log4net library is a means to help the programmers output assertions or logs to a variety of output targets. It is very helpful in the cases where you are facing problems with an application and want to log statements to locate the problem. The...
Raghav Khunger
· 9/10/2011 ·
2
·
2201 ·
share
Understanding CSS Overflow Property
Recently one of my developers asked me regarding the overflow property of CSS. He was having some confusion regarding various options (visible, hidden, scroll and auto) provided in overflow property. Therefore I decided to write an article on same which w...
Raghav Khunger
· 7/21/2011 ·
3
·
2921 ·
share
SQLDataSource: Insert, Update and Delete data
In this article I will show how to insert, update and delete data with SQLDataSource control. The SqlDataSource control makes use of ADO.NET classes (System.Data.Odbc, System.Data.OleDb, System.Data.SqlClient, System.Data.OracleClient) to connect to any D...
Raghav Khunger
· 6/27/2011 ·
8
·
9732 ·
share
Using jqGrid with ASP.NET
In this article I will explain how to use jqGrid with ASP.NET. jqGrid is one of the most popular jquery grid and it is one of the best grid component. With the help of jqGrid wecan represent and manipulate tabular data for representing and manipulating ta...
Raghav Khunger
· 1/24/2011 ·
7
·
32404 ·
share
Reorder list using jQuery and ASP.NET
In this article I will explain how to reorder list using jQuery and ASP.NET and the saving the item's updated order in the database. The advantage of reordering list with jQuery is that it is light weight, saving of bandwidth and good from user prespectiv...
Raghav Khunger
· 1/22/2011 ·
11
·
15967 ·
share
Check username availability using jQuery and ASP.NET
In this article I will show how to check username with jQuery and ASP.NET. This will let the users know if a particular username is available or not during the process when they are filling out the registration form. In tradtional way if you are going wit...
Raghav Khunger
· 1/21/2011 ·
3
·
7359 ·
share
How to shorten url with jQuery
In this article I will show how to shorten url with jQuery. I am going to use bit.ly api to shorten the urls. I have made a custom jQuery plugin which will use bit.ly API to shorten the longurl. URL shortening is a technique on the World Wide Web in which...
Raghav Khunger
· 12/26/2010 ·
1
·
3538 ·
share
Calling web service using jQuery in ASP.NET
In this article I will show how to call ASP.NET webservice using jQuery. Webservice call using jQuery will let you to prevent the re-rendering the entire content of the page. The request is made partially and you can replace the content of the page withou...
Raghav Khunger
· 11/21/2010 ·
7
·
8994 ·
share
Cascading dropdownlist using jQuery and ASP.NET
In this article I will show how to implement jQuery cascading dropdownlist using jQuery and ASP.NET. Cascading drodpdownlist means when one dropdownlist is dependent on other dropdownlist. Let's take a common example of Country, State and Metro. Each coun...
Raghav Khunger
· 11/6/2010 ·
6
·
9866 ·
share
Using jQuery Autocomplete in ASP.NET
In this article I will show how to use jQuery Autcomplete in ASP.NET application. Autocomplete is one of the most needed feature while making applications where user demands the auto predicting feature when he types something in the input textbox.
Raghav Khunger
· 11/6/2010 ·
18
·
17743 ·
share
Difference Between Int32.Parse, Convert.ToInt32 and Int32.TryParse
In this article the difference between Int32. Parse , Convert.ToInt32 and Int32.TryParse is discussed.
Raghav Khunger
· 9/5/2010 ·
3
·
3001 ·
share
jQuery Intellisense in Visual Studio 2008
In this article I will discuss how to add jQuery intellisense in Visual Studio 2008. I will discuss • How to add jQuery intellisense in .aspx page ? • How to add jQuery intellisense in external javascript file ? • How to add jQuery intellisense in .ascx u...
Raghav Khunger
· 8/25/2010 ·
3
·
11913 ·
share
Import data from EXCEL to SQL in ASP.NET
In this article I will explain how to import data from EXCEL to SQL in ASP.NET . In many situations we have data in the form of excel sheet but we have the requirement to have that data in SQL SERVER DB. I have explained importing data both from Excel 97-...
Raghav Khunger
· 11/1/2009 ·
4
·
15580 ·
share
How to get readonly textbox value in codebehind file
In this article I will explain how to get readonly textbox value in codebehind file. I am writing this article to resolve these issues: • ASP.NET Ready Only TextBox lose client side changes, values across post back? • Why Readonly Text box values are empt...
Raghav Khunger
· 9/17/2009 ·
5
·
45197 ·
share
Backup your database using Microsoft SQL Server Management Studio Express (Export to .bak)
A guide to show you how to make an individual backup of a database using SQL Server Management Studio Express.
Matthew Harris
· 8/21/2009 ·
3
·
10290 ·
share
C# DataGridView control with custom collection in Windows Forms
This is a brief quick tutorial on how to use Windows DataGridView control in your windows forms based applications with custom collections in C# or VB.NET
Vivek Thakur
· 3/22/2009 ·
4
·
58758 ·
share
ASP.NET Viewstate and ControlState
This article gives a brief introduction on ViewState and Control State in ASP.NET, and also focuses on some of the tricky issues with both.
Vivek Thakur
· 3/19/2009 ·
4
·
27240 ·
share
Plugin architecture made easy
Recently I was asked to architect a module in my organization which should identify third party CRM on the fly and plugin to the features exposed by the third party CRM through web service like loading and saving leads, contacts etc. There were several ap...
Ajay Meher
· 3/10/2009 ·
0
·
2906 ·
share
The Importance of Web Design and Website Credibility
One of the most significant functions of websites today is to provide credibility for your business. The credibility of your website is becoming more and more an increasingly important area to understand. And it's an area that many web developers and web ...
Tim Eisenhauer
· 2/3/2009 ·
2
·
3678 ·
share
Story of two Textboxes
This story tells the reader the difference between different types of controls and the importance of Viewstate; Author: Vivek Thakur; Section: ASP.NET;
Vivek Thakur
· 1/5/2009 ·
12
·
4085 ·
share
Difference Between Unix and Windows Shell
This article aims to discuss the true meaning of a shell in both Unix and Windows
Vivek Thakur
· 12/26/2008 ·
0
·
8122 ·
share
Page 1 of 1 (24 items)