How to insert the column with data in between datatable ?
        Posted  
        
            by Harikrishna
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Harikrishna
        
        
        
        Published on 2010-04-26T07:06:18Z
        Indexed on 
            2010/04/26
            7:13 UTC
        
        
        Read the original article
        Hit count: 277
        
I have datatable like :
id name address
---------------
1  abc  akjdk
2  bcd  dkjkl
Now I want to insert one column with data in between to that datatable like :
id name phoneno address
-----------------------
1  abc  11231   akjdk
2  bcd  12313   dkjkl
How can I do this ?
© Stack Overflow or respective owner