Retrieve Value from DataSet

How to retrieve the third table value from the data set?

Questions by kalpantpatil   answers by kalpantpatil

Showing Answers 1 - 3 of 3 Answers

sandhya

  • Oct 25th, 2012
 

Code
  1. ds.Tables[2].Rows[SpecificRow][SpecificColumn].ToString();

  2. // SpecificRow- is an Row Index

  3. // SpecificColumn - is either DataColumn or Column Name in

  4.         string or Column Index

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions