Click here to Skip to main content
15,897,187 members

Comments by superselector (Top 16 by date)

superselector 11-Dec-14 4:26am View    
Yes the command will be executed with full admin privileges by windows Administrator.
superselector 17-Nov-14 3:36am View    
That is SQL Query .. I have mentioned its a DataTable in C# and want to implement the same in C#
superselector 14-Aug-14 6:54am View    
Would Suggest you to
1. export the csv file to DataTable
2. create a new datatable with only one column ID and add the values
3. Merge the datatables
4. Import the newly created datatable to csv file
superselector 30-Jun-14 8:44am View    
hi ,

U probably have to save the gridview data to a datatable by looping through each row for each cell
superselector 30-Jun-14 8:41am View    
Hi Kamal Kannan,

you can do like this

1. import all the data to one table(original datatable)
2. Copy the data to another table
3. find distinct segments Name
4. for each segment, loop through the original datatable
4. create a new datatable by cloining the original datatable and add rows for matching Segment Name and export the datatable to csv in foreach loop itself