本文介绍了如何使用c#验证asp.net中列表框中的重复值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 学生ID textbox1 1000按钮(添加) 当我点击该按钮1000时,它将被添加到列表框中。 列表框如下 1000. 然后再次点击添加按钮1000无法添加到listbox。 我怎样才能在asp.net中使用c#验证。 问候, Narasiman P. student id textbox1 1000 Button (Add) when i click that button 1000 it will be added in the listbox. listbox as follows 1000. Then again when i click the add Button 1000 cannot be added in the listbox. for that how can i validate in asp.net using c#. Regards, Narasiman P.推荐答案 if(!listBox1.Items.Contains(textvalue)) { //Add data to listbox} 谢谢thanks if (!ListBox1.Items.Contains(ListBox1.Items.FindByText(item))){ ListBox1.Items.Add(item);}else{ Response.Write(@"<SCRIPT LANGUAGE=""JavaScript"">alert('Duplicate value hadbeen entered')</SCRIPT>");} 参考.. :) 检查列表框中的重复值并提供错误消息 [ ^ ] 检查重复项的列表框并删除重复项? [ ^ ] 这篇关于如何使用c#验证asp.net中列表框中的重复值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-28 12:49