Is there a way to generate the HTML for a single profile field? I know I can do RenderForm() and get a form HTML with all the fields in it. But I would like a single field's HTML.
Is there a way to generate the HTML for a single profile field? I know I can do RenderForm() and get a form HTML with all the fields in it. But I would like a single field's HTML.
There's not a good way to do this as you described. One way would be to manage it via user updates - fetch user details, pull the profile field you want to display, and send back any changes through a user update. However, that wouldn't use any built in html rendering for the field.
There's not a good way to do this as you described. One way would be to manage it via user updates - fetch user details, pull the profile field you want to display, and send back any changes through a user update. However, that wouldn't use any built in html rendering for the field.