1 2 3 4 5 6 7 8 9 10
| <asp:DetailsView ID="DetailsView1" runat="server" AutoGenerateRows="False"
DataSourceID="SqlDataSource1" Height="50px" Width="125px">
...
</asp:DetailsView>
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:ConnectionString %>"
SelectCommand="SELECT [LastName], [FirstName], [Alias], [Age], [Address], [City], [Povince], [Country], [PostalCode], [PhoneNumber], [EMail], [CreatedDate] FROM [Clients] WHERE ([Alias] = User.Identity.Name)">
</asp:SqlDataSource> |