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 / udai

On_page load
{
RequiredFieldValidator1.Enabled = false;
}

if (DropDownList1.SelectedItem.Text == "Other")
{
RequiredFieldValidator1.Enabled = true;
}
else
{
RequiredFieldValidator1.Enabled = false;
}

Is This Answer Correct ?    4 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Define repository pattern in asp.net mvc? : asp.net mvc

1049


Can we have multiple worker process in an ASP.NET application? If so then how it has been handled by application? And who handles it?

1054


If I have more than one version of one assemblies, then how will I use old version (how/where to specify version number?) In my application?

1045


Explain what are the advantages of asp.net mvc framework? : asp.net mvc

1186


Web API uses which library for JSON serialization?

1142


What is the use of placeholder control?

1075


What is an example of an application service provider?

922


What is marshalling ? Is it a part of asp.net ?

1140


How to include silver light .xap page into asp.net web application and what is the purpose of using silverlight application?

2774


Do I need to have the latest version of windows media player installed?

1012


What are the different authentication modes in asp.net?

1068


What is the typical session identifier?

1109


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

990


How to integrate angular 8 with asp.net mvc 5? : Asp.Net MVC

933


What is datagrid asp.net?

1116