マークアップでエンティティデータソースが定義されているので、
<asp:EntityDataSource ID="edsFV" runat="server"></asp:EntityDataSource>
<asp:EntityDataSource ID="eds_fv_singleuserprofile" runat="server"
ConnectionString="name=webEntities" DefaultContainerName="webEntities"
EnableFlattening="False" EnableUpdate="True" EntitySetName="userprofiles"
Where="it.ASPUserId = @SelectedValue" >
<WhereParameters>
<asp:Parameter DefaultValue="20" Name="SelectedValue" Type="Int32" />
</WhereParameters>
</asp:EntityDataSource>
ドロップダウン選択に関する情報を再クエリします。5 つのプロパティを持つ単一のアイテムを返します。プロパティの 1 つ「FullName」にアクセスして、更新パネル内のフィールドセットの凡例で使用しようとしています。このドロップダウンは次のようにデータを変更しています。
<asp:UpdatePanel ID="udpUserProfile" runat="server" >
<ContentTemplate>
<fieldset id="singleuserprofile" >
<legend>Profile details for <%# I want to databind the "FullName" property value here%></legend>
"other code"
</fieldset>
</ContentTemplate>
</asp:UpdatePanel>
そうするために適切に機能する方法が見つからないようです。どんな助けでも感謝します。