Hi,
I have a label , textbox ,and dropdownlist,
in dropdown i have two items Accepted and Not Accepted
if i choose Not accepted it visible the label and textbox in vb.net
How can i pls help me
Thanks in advance
in the page load
label.visible=false
textbox.visible=false
if dropdownlist.selectedindex=1 then //accepted
perform some action
else //not accepted
label.visible=true
textbox.visible=true
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.