2 list box item transfer together

Add Item into ListBox Write below code in page load event for adding items in listbox1 if (!Page.IsPostBack) { ListBox1.Items.Add(“Baroda”); ListBox1.Items.Add(“Anand”); ListBox1.Items.Add(“Ahmedabad”); ListBox1.Items.Add(“Pune”); } Now create another list box and one button to transfer multiple selected item from previous listbox Write downbelow code in Button Click event……….. int sel = 0; for (int i = …

Asp.Net

What is .net? .net framework is a programming paltform that is used to developing windows and web based software. It has number of pre-coded solutions that manage the execution of programs written specially for the framework. .net framework has 2 main parts. Common language runtime Class library The code of a program is compiled into …

Admin Editor

How to use FCK Editor For Insert Update Delete Text Dynamically? 1. Download FCK Editor From: http://www.fckeditor.net/download 2. Unpack download files. There you will find the original source code of the control and a compiled version of it. The file is called FredCK.FCKeditorV2.dll. bin/Release/1.1/ – the version designed for ASP.NET 1.1 bin/Release/2.0/ – the version …