a Query about Duwamish7.0

  • Thread starter Thread starter Kylin
  • Start date Start date
K

Kylin

In the File wich named accountmodule.ascx.cs ,
there is one line code under this :
customerRow[CustomerData.PKID_FIELD] =
Customer.Tables[CustomerData.CUSTOMERS_TABLE].Rows[0][CustomerData.PKID_FIELD];

meaning ?
 
Hi,

It looks like code tries to construct some row (customerRow) and takes a
value for the PKID_FIELD column of it from the same column of the first row
in a CustomerData table
 
Back
Top