One of my web page contains dropdown and gridview only.There is no button.I want to validate that dropdown when i click the gridview.(OR) validate when control moves from that dropdown.Help me.

Recommended Answers

All 6 Replies

Member Avatar for rajarajan2017
<asp:dropdownlist id=lstForeColor runat="server" Height="22px" Width="194px" AutoPostBack="True"></asp:dropdownlist>

Private Sub ControlChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) _
     Handles lstForeColor.SelectedIndexChanged
'YOUR VALIDATION CODE HERE
End Sub

I think this code will work.

please give me more clear details.I couldnt get.

Member Avatar for rajarajan2017
Private Sub DropDownList1_SelectedIndexChanged(ByVal sender As System.Object,_
ByVal e As System.EventArgs) Handles DropDownList1.SelectedIndexChanged
'Implement your code (OR) follow the next code 
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As _
System.EventArgs) Handles Button1.Click
TextBox1.Text = "You Selected:" & DropDownList1.SelectedItem.Text
End Sub

Write your code in dropdownlist1_selectedIndexChanged event to show the records in grid view for a particular value selected from dropdownlist (or) Write the code in the button by getting the text from dropdownlist as shown above.

Please clarify with more details what you are expecting if it is not suitable to your code.

I am not using any button field in that page.So i couldnt validate.

Member Avatar for rajarajan2017

Will you please tell me, what you are going to validate?

Please read my first post.Now i removed intial value in drop down so no need to validate dropdown.i couldnt solve that.Now first value also one of valid value.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.