Newbie----SQL data displayed in a Webform

  • Thread starter Thread starter Scott D
  • Start date Start date
S

Scott D

I know this is probably very simple but I have been struggling with
this for days and exhausted all of the resources I know. I simply
want to search through a SQL database and match a record based on the
primary key. Then once I have the record discovered display that
information on a form that I have already created. The form obviously
consists of textboxes, radio buttons and checkboxes. I understand how
to display the record information in a datagrid but not the form.
Thank you all for your help.
 
Hi,

I don't think you can directly write your information in the form
I suggest to effectivelly write them in a data grid not visible (or in a
dataset, which is better) then to read column by column your datagrid
(dataset) and fill each element of your form (textbox, radio ...)

ROM
 
Back
Top