Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

In a page there is dropdown list with the name of the
cities like Bangalore,Pune,Chennai,Other and a text box
that would enable the user to enter the name of the city if
other is selected. How to enable validation on the text box
if other is selected

Answer Posted / deepak

just write a javascript function like this
on button click or on onkeypress event of text box

function validate()
{
if(document.getelementbyid("ur dropdownlist").value=="other")
{
if(document.getelementbyid("ur textbox").value=="")
{
alert("please enter city name");
return false;
}

}

}

and call like this onkeypress='return validate()'

Is This Answer Correct ?    4 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a windows service?

1149


How would you turn off cookies on one page of your website?

999


Explain the difference between asp.net mvc and asp.net webforms

1103


How long does an http session last?

988


how can we create wcf in asp.net and how can we cll that in to asp.net application?plsss tel me each step clearly

2117


Which data type does the rangevalidator control support?

1005


What is a postback ispostback and autopostback in asp net?

957


What is the basic purpose of the required field validator? How can you use a required field validator to check that the user changes the initial value of a text box? a listbox?

1931


Why we use asp.net for website development?

957


How can we apply themes to an asp.net application?

1085


how to debug web services on consumer side?

1117


Explain one critical mapping?

1053


Explain the features that make asp.net more used framework? : asp.net mvc

990


What is state management in .net?

1131


How to disable cut, copy and paste in TextBox using jQuery in asp.net?

1255