Hi
I have an array which contains some elements ( it has created dynamically )
I want to put this array elements into a selectable list/drop down menu so user can select options that i want.
I tried using selec/option method, but i couldnt set the array elements into the option dynamically.
usingasp.net C#
this is my array:
string txt;
txt = Resulttst.Text;
if (txt != "")
{
string[] delimiter = { Environment.NewLine };
string[] ar = txt.Split(delimiter, StringSplitOptions.RemoveEmptyEntries);
by the way i can show my array elemnts one by one but i want to put them into a selectable list
thanks in advanced
S ...
Go to the complete details ...