I have a text named as "ABC" in textbox, I want to add it to a listbox... If listbox contains already "ABC"or "abc"or "Abc"" or any combination of the letter "abc" should not allowed it.....
I am using c# code not vb.net....
Dont have complete detail i.e. the code which you tried but it should be something like
if (!lstBox.Items.Contains(<text>)) { lstBox.Items.Add(listItem); }
How to get all values along with control Id using Jquery in ASP.NET?