Returning Columns Name Only
-
Hi, I have a webpage with a check boxes. The user must be able to select which fields he/she wants to include in a SELECT statement. So I am going to have 1 checkbox for each field. I want these checkboxes to be created dynamically for each field. I was thinking of doing it like this, for example with the long description field: LongDescription AS "Long Description" The "LongDescription" will probably be the name of the checkbox. And the "Long Description" will be displayed next to the checkbox as a description to the user. How do I return columns only and not the rows of the records, how would I do this? I am using VB.NET 1.1. Regards ma se
-
Hi, I have a webpage with a check boxes. The user must be able to select which fields he/she wants to include in a SELECT statement. So I am going to have 1 checkbox for each field. I want these checkboxes to be created dynamically for each field. I was thinking of doing it like this, for example with the long description field: LongDescription AS "Long Description" The "LongDescription" will probably be the name of the checkbox. And the "Long Description" will be displayed next to the checkbox as a description to the user. How do I return columns only and not the rows of the records, how would I do this? I am using VB.NET 1.1. Regards ma se
ma se wrote:
How do I return columns only and not the rows of the records
Hi, You really mean column names?. If you are using recordset then you can take field anmes by adors.fields(index).name.
-
ma se wrote:
How do I return columns only and not the rows of the records
Hi, You really mean column names?. If you are using recordset then you can take field anmes by adors.fields(index).name.
I'm using VB.NET 1.1 and not using recordset.