hi..
i want to remove null values from string array..
string[] s;
s=new string[5];
s[0]=a;
s[1]=b;
s[2]=null;
s[3]=null;
s[4]=null;
in this coding i have values in 0 and 1 indexes and remaining indexes contains null values and i want insert the values to database without inserting null..
need ur suggestions
regards
gopal.s