Sharepoint 2007 - read custom page field from webpart - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T08:55:37Z http://stackoverflow.com/feeds/question/551862 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/551862/sharepoint-2007-read-custom-page-field-from-webpart 1 Sharepoint 2007 - read custom page field from webpart Jon D 2009-02-15T23:44:50Z 2009-02-19T22:05:30Z <p>Hi,</p> <p>How do I programatically read a custom page field from within a webpart (from the page the webpart is on)?</p> <p>Thanks</p> <p>Jon</p> http://stackoverflow.com/questions/551862/sharepoint-2007-read-custom-page-field-from-webpart/567433#567433 0 Answer by bzlm for Sharepoint 2007 - read custom page field from webpart bzlm 2009-02-19T22:05:30Z 2009-02-19T22:05:30Z <p>Same as you would a non-custom field type:</p> <pre><code>CustomFieldType customField = (CustomFieldType)page.ListItem["FieldName"]; </code></pre> <p>Only you cast to your custom field type.</p>