Here I am going explain about Cascading Dropdownlist with viewstate (which will retain the last value even on postback)
ASP.NET CODE
<asp:DropDownList ID="ddlcategory" runat="server" AutoPostBack="true"
CssClass="mydropdown" Width="120px" EnableViewState="true"
...
Wednesday, 1 April 2015
Send eMail by using Gridview data (ASP.NET AND C#)
Here I am explaining about how to send eMail of Gridview data via ASP.NET and C#
C# CODE
CLASS LIBRARY
using System.Net;
using System.Net.Mail;
using (StringWriter sw = new StringWriter())
{
using (HtmlTextWriter hw =...
asp.net c# live search on gridview by selected fields
In my previous post I explained about selected fields to show in Gridview, now I am going to explain how to filter the data by selected fields using textbox.
asp.net code
<select id="selectfields2" name="selectfields" data-width="100%" multiple class="selectpicker show-tick" data-live-search="true"...
Simple selected fields in Gridview using c#
Here I am going to explain you, how to show only selected fields in Gridview using dropdown and command button
Here we go: Dropdown with field names
<asp:DropDownList ID="ddlsearch" runat="server" CssClass="selectpicker show-tick pull-right" data-live-search="true">
...
dropdown multi select with live search

Here I am going to explain how to make asp.net dropdownlist with multi select and live search using simple javascript.
define below mentioned javascript in header section
<link rel="stylesheet"...