i have the property UserName and FullName. i am already returning The username like
But what i want is something like this
But the i get the error: "DataBindin g: 'System.Data.Da taRowView' does not contain a property with the name 'hello'."
how can i achieve this? is there another way?
Code:
<asp:Label ID="DeLabel" runat="server" Text='<%# Eval("De") %>' />
Code:
<asp:Label ID="DeLabel" runat="server" Text='<%# Eval(Profile.GetProfile("De").GetPropertyValue("FullName").ToString()) %>' />
how can i achieve this? is there another way?
Comment