Hey All,
Quick question regarding the label/caption placement on a textbox in the Application Architect SmartPart designer:
I'm trying to use some basic textbox functionality to place the "comments" label below inside the textbox itself as a "placeholder" to save some real estate, but the property for placeholder does not exist and results in an error.

This is possible using a standard asp:TextBox control on a custom form by specifying the placeholder property:
<asp:TextBox ID="txtTotalPctDisc" CausesValidation="true" style="width:15%;" AutoPostBack="true" placeholder="%" OnTextChanged="txtTotalPctDisc_OnTextChanged" runat="server"/>
which results in (a nice placeholder "%" inside the textbox iteself:

I thought both controls were essentially asp:TextBoxes whether custom or not? Is there any way to provide this property to the native smartPart?