Database Fields On Form

dotnetnubie

Member
Joined
Jun 4, 2005
Messages
9
Programming Experience
10+
I am building an application that managages personnel records. A list of personnel are listed in a datagrid, and a hyperlink for each record is listed as one of the datagrid values. I want the use to be able to click on the hyperlink and be directed to a detial page with complete information on that employee, and be able to view or modify (depending on authorities) that information. My datagrid portion and hyperlink are working correctly, but I'm a bit lost on how to query that single record and display each separate field value on the form. I already have the query criteria (employee id, user authority, etc.) successfully passed to the new form. What is the most simple way to accomplish this?

Thanks in advance,
dotnetnubie :cool:
 
Just add a bunch of TextBoxes (and other controls if required) and corresponding Labels to your detail form and put the info in them. You can make the TextBoxes ReadOnly if the data is not to be edited.
 
Back
Top