I have a DropDownList for which I am trying to show a div OnSelectedIndexChanged but it says OBJECT REQUIRED.
DropDownList
div
OnSelectedIndexChanged
OBJECT REQUIRED
I a
You can use a standard ASP.NET Panel and then set it's visible property in your code behind.
To show panel in codebehind:
Panel1.Visible = true;