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

How does asp.net work?

1007


is gateway for sms continue connected for sending sms.how?

2312


What are type/key pairs in client script registration? Can there be 2 scripts with the same type/key pair name?

997


How do I publish my asp.net application to my isp's web server?

1131


How use Xml data in ASP.net?

1040


Can you explain one critical mapping? Performance issue which one is better?

956


What New Features comes with ASP.NET Web API 2.0?

1084


How do I debug an asp.net application that was not written with visual studio.net and that does not use code-behind?

1067


How to find last error which occurred?

1097


What is the maximum timeout we can set for Cookies?

1042


What is meant by web application?

998


Explain difference between dataset and recordset?

1132


What is http only cookie?

1202


What is the difference between mvc and asp.net? : Asp.Net MVC

1072


What is Dynamic Web and discuss its usage with the help of real life examples?

1104