Hello All,
I've been searching for a way to dynamically retrieve an employees Name from my Employee table. Typically, the url looks like this: http://website/Employees/Details.aspx?EmployeeID=874 I have a custom field template and I'm trying to do something like this:<asp:Label runat="server"><%= (Employee.First Name + " " + Employee.LastName ) %> </asp:Label><br />
It doesn't work. Do I need to use FieldTemplateUserControl in the code behind file?
Thanks, Jeff
View Complete Post