Java Script Validation onSubmit event of form

<script language=”javascript” type=”text/javascript”> function validateFormOnSubmit(theForm) { var reason = “”; var intFlag = 0; //Radio button List validation reason += validateTextBox(); reason += validateLastName(); reason += validateDate(); reason += validateQualification(); reason += validateRadioButtonList(); if(reason != “”)…

Read More

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…

Read More

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.…

Read More

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…

Read More