CODEDIGEST
Home » 
Search
 

Technologies
 

CodeDigest Navigation
 

Technology News
No News Feeds available at this time.
 

In Community
No News Feeds available at this time.
 
ASP.NET
Articles
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Most often we will get a requirement to capture date input from the users. Normally, we can do this with a textbox and asking user to input the date in a particular format using a help text near by the textbox. This article will help us to build this control ourselves and also some of the other options available.
Input validation is one of the important things we should implement in any project. From ASP days, we write our validation code using javascript wherever necessary. With the introduction of .Netframework, we have set of inbuilt validation controls which help in validating our inputs easily and which take very less time when compared to ASP days. Read more in this article..
In this article, we will see some of useful tips that can help us in deploying application efficiently in production.
There are various databound controls available in ASP.Net to display data. For example: GridView, DataList, Repeater, ListView, etc. Whenever we get a requirement to display data, there is always a confusion to choose the right databound control that can satisfy our needs. This article will help you to understand all these controls and their advantage in a particular scenario which can help us to choose the right control that can fit our needs.
This article demonstrates a custom control for button which gets disabled after user clicks on it so that we can stop user to resubmit the same information again and again intentionally or unintentionally. Here, when user clicks on submit button, its first checks the validation part. After passing it, the data gets posted & button gets disabled. After that the button gets enabled for new submission. Also the text written in the textbox gets changes dynamically.
In this article, I will explain different ways of using hyperlink control in data bound controls like GridView,DataList and Repeater control.
ListView is a new databound control that is shipped with ASP.Net 3.5. Read my previous article - ListView Control in ASP.Net 3.5 which elaborates the usage of this new control. ListView control is one of the most flexible databound control that can be used to present the data in any custom format. Moving forward, in this article we will use this new control to create Google’s Picasa style photo album.
This article details out the better practices on how to get the most out of your web pages in terms of delivering, parsing and rendering the content on a web browser.
Edit,Update and Delete in GridView using DataKeys,A datakey represents the primary key field or field of a record in a data-bound control. Many a times in our applications we use primary keys to get control of the particular record in the gridview. For this situation, many developers use invisible columns (Hidden columns) in the gridview to identify that row. We can achieve the same functionality using Datakeys.
RSS feed is an xml formatted document that gives the capability to read frequently updated contents of our websites without visiting our site. In this article, we will use Repeater and SqlDataSource control to generate the RSS XML.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15