Dear Friends ..,
This is Narasimha Murthy ... I am Associate Software Engineer From Blue Frog Mobile Technologies ., Visakhapatnam
I Need Suggestion from you ..,
How to show message pop up for when i select the drop down list ?
Scenarios :
state : ddlstate ---> Andhrapradesh , Assam , ............ , uttaranchal , uttarapradesh ... like that ,
District: ddldistrict ---> Srikakulam , Vizianagaram , .............. When i select ddlstate as Andhrapradesh
Mandal : ddlMandal ----> Rajam , Palasa .., like that when i select ddldistrict as Srikakulam ..,
In this way ..,
if i want to validate Message pop up to show when i select ddlMandal without selecting ddldistrict ..,
Please send the Details
Thanks ,
T V S Narasimha Murthy

Sandeep Singh ShekhawatPosted May 23, 2013, 11:25 AM
Thanks,
Sandeep
Narasimha MurthyPosted May 23, 2013, 3:28 AM
Hey Sandeep ..,
how to display tooltip ingridview column on mouse over
please send code ?
Sandeep Singh ShekhawatPosted May 22, 2013, 11:41 AM
So you are still facing issue. let me know if you have a issue related to your this post.
Thanks,
Sandeep
Narasimha MurthyPosted May 22, 2013, 12:27 AM
Sandeep Singh ShekhawatPosted May 21, 2013, 6:58 AM
If this post solved your issue then mark as accepted answer along with +1 like.
Sandeep Singh ShekhawatPosted May 21, 2013, 3:37 AM
<asp:DropDownList ID=" ddlMandal" runat="server" Width="170px" onchange="javascript:return BasicDetailValidate();"
>
asp:DropDownList>
function BasicDetailValidate()
{
var ddldistrict = document.getElementById("<%=ddldistrict .ClientID %>");
var ddldistrictText = ddldistrict .options[ddldistrict .selectedIndex].text;
if (ddldistrictText == "-Select-" || ddldistrictText == "Select" || ddldistrictText == ""))
{
alert('please select district');
return false;
}
else
{
return true;
}
}