Web developers using Asp.Net, commonly use the GridView control to display data in a tabular format. The GridView comes with many useful features, especially paging. Here in this post I’ll show you ...
If you have worked with SQL Server Database, then I am sure you know how to create a table, add columns, keys etc. In SQL Server, either you use a Create Statement to create a table or you might use ...
The example in this article is an extension of my previous article on how to add or remove HTML elements dynamically using jQuery. The previous article is very popular, however programmers, especially ...
I often use the jQuery Datepicker widget in my web application to choose a date in “dd/mm/yyyy” format. This is a very common date format used by many web developers like me. However, we may sometimes ...
Asp.Net GridView controls provides many useful functions and properties that can help you present your data in a dynamic way. One of its features is highlighting text in a cell based on certain condit ...
The advantage of creating and adding a DropDownList dynamically using code behind procedure, is that you can create the control ...
A few days back I was working on a project that included showing images on a webpage and this time I was required to display the images inside a DIV element. Here in this article, I’ll show you how to ...
You can use Regular expressions in Asp.Net to validate texts for either searching patterns or restricting user input in a textbox. If you are using a textbox in Asp.Net, you can use the MaxLength prop ...
A few days back I across this situation and it took me some time to figure this out. Here’s the situation. I have a form (a web page) with few input elements on it. I also included “ScriptManager” an ...
Let us assume, you have a form with many input boxes or textboxes and you want set focus on a textbox automatically with the click of a button or after selecting or entering some value in the previous ...