Hi I am querying the Sharepoint Lists using the Sharepoint Library in .net. I noticed that there is more than one title field. How can I get the user defined title field?
SPListItem item = myItemCollection[i];
item["Title"] <- provides me the wrong title field
Is this a known issue, any work around? Thanks
However if I go into my list settings and rename the column from Title to Article. And do the following it works:
SPListItem item = myItemCollection[i];
item["Article"] <- provides me the wrong title field