List box problem

  • Thread starter Thread starter Asp Net via .NET 247
  • Start date Start date
A

Asp Net via .NET 247

(Type your message here)

--------------------------------
From: Asp Net

Hi all,

I have list box in web form. I am populating 2 coloums in the list box. My problem is I need space between two coloumns.

lstList.Items.Add(Coloumn& " " & Coloumn) this is not working. What to do?

Thanks in advance
 
Hi
I come acrossed the same problem, what i did is I write the sql query which concatenate the two column and return it as a single column
Example
'Select Col1 + ' ' + Col2 from Table1

Regards
Sathesh
 
Back
Top