Hi
I have a problem with my panel "carpanel" as i have a cascading dropdown list which takes its value from the database it should be invisible until the user choose a Cars from category DDL "Catedrdoads" but nothing as appear when i choose Cars, so please
could some one find a solution for me
I have create a screen record and i hope its will be useful to know how we can find a solution for this case
https://www.youtube.com/watch?v=-HhA7DR-h5k&feature=youtu.be
protected void addadsbtn_Click(object sender, EventArgs e)
{
var user = Session["UsrNme"];
var location = Session["location"];
if (Catedrdoads.SelectedValue != "Cars")
{
//If so then show the panel
carpanel.Visible = true;
}
else
{
//If not then hide ...
Go to the complete details ...