hi
i developed web application
in that , i want display one item in the listbox from one textbox value
so the textbox value will be stored as a item in the listbox
can any one give the solution
regards
vijay
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Niradhip ChakrabortyPosted Aug 26, 2009, 7:54 AM
{
listBox1.Items.Add(textBox1.Text);
}
Ramalingam SPosted Aug 26, 2009, 6:16 AM
but normally we can add the textbox value in listbox as an item like this
ListBox1.Items.Add(TextBox1.Text);
can u explain briefly about your problem