I have been trying to implement extended user data in cs 3.0 and i am running into some trouble displaying that info on a users profile. I have looked over several posts http://www.tankete.com/core/blogs/jose_lema/archive/2006/06/29/CS-Spotlight_3A00_-Extended-User-Data.aspx but it seems that that detailed a cs 2.1 instance.
I have done the following
Added the following code in communityserver.config
<ExtendedUserData>
<add name = "Quote" />
</ExtendedUserData>
Added this to languages/en-US/resources.xml
<resource name ="EditProfile_Quote">Quote</resource>
Placed the following code in themes/default/user.edituser.aspx
<tr>
<td class="CommonFormFieldName">
<CSControl:ResourceControl runat="server" ResourceName="EditProfile_Quote" />
</td>
<td class="CommonFormField">
<asp:Textbox id="Quote" Columns="30" MaxLength="50" runat="server" />
</td>
</tr>
Thats about as far as i have got...the text box shows up and says "quote" like it should however if i write something and then save it the value is no longer displayed in the textbox i am guessing its not being saved to the database...as for displaying that info on a users public profile i am having some trouble there..i tried using the code from jose's blog however that does not work...if anyone has any ideas on how to make this work in CS 2007 that would be great