Hi Arman,
Maybe i totally dont understand the question but what i suppose you are asking is
1) a way to select a particular column related to row from database
well try sql (page 408 beginning ASP.NET4)>> SELECT ColumnName [, AnotherColumnName] FROM TableName
..just add a where clause
SELECT ColumnName [, AnotherColumnName] FROM TableName WHERE RowName = 'row_value'
the TRY it out on page 411 focuses on the same/ all you need is to change the SQL query according to your need.
Last edited by 07Raghav; December 14th, 2012 at 02:59 PM..
|