Sharepoint 2007 - read custom page field from webpart - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T08:55:37Zhttp://stackoverflow.com/feeds/question/551862http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/551862/sharepoint-2007-read-custom-page-field-from-webpart1Sharepoint 2007 - read custom page field from webpartJon D2009-02-15T23:44:50Z2009-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#5674330Answer by bzlm for Sharepoint 2007 - read custom page field from webpartbzlm2009-02-19T22:05:30Z2009-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>