“LINQ provides uniform way to perform action on any object which Implements the IEnumerable<T> OR IQueryable<T> interface with different type of data sources.” LINQ is the new feature whic...
Hash table is a collection class where objects are stores with key/value pair,key cannot be null, but value can be null. This comes under the System.Collections namespace.In Hash table each element is...
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 ...
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. ...
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.S...
In this article I will explain what and where is the use of flags attribute in enums. By setting the flags attribute over the enum, each enum value will be treated as bitflag pattern. Enum should have...
In this article ASP.NET Page Life cycle is explained.Various Stages starting from initialization to unload of a pages is covered in this section.
Using jqGrid with asp.net
In this article the difference between Int32. Parse , Convert.ToInt32 and Int32.TryParse is discussed.
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 javasc...
An article on how to put together ASP.NET horizontal Menu control with access key and target window support
HTML5 will be the new standard for HTML, XHTML. HTML 5 introduces a whole set of new elements that make it much easier to structure pages. Through this article you know about html5 elements and how to...
In this article, I am discussing how we can refresh data after a certain interval ASP.NET by using data representation control. i.e data representation cotrol automatically refreshes after a certain i...
In this article you will get to know about how to integrate Cute Chat Web Messenger with Asp.net application.
This article explains the new property ViewStateMode regarding ViewState management in ASP.NET 4.0
In this article I will explain you how to prevent user data to lose when he accidentally click refresh or click the back browser button or click close button of browser ,or any task which leads to los...
This Article explains about the jQuery.
With the help of this article you can easily host your websites in IIS
An article on how to create an image map with hotspots and attach click event and tooltip to it.
An article on how to build a multiple selection dropdownlist with the AJAX HoverMenuExtender.
Summary
This article is based on -how we can store image into database.It will gives the simple demo with source code in C#
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 imple...
This Article is used to insert a numeric value on the sever control(text box) This is a java script code for the the client side validation. On Page Load Event You can change the events in txtNoOfQues...
In this article I will discuss the performance regarding difference between implicit and explicit static constructors .