I am adding a new record to a table name System.
At the moment I am selecting a value from a dropdown list (populated by the BusinessID value from a database)and adding a value to a text box.
BusinessID is linked to the System table, which is the table that I’m adding to.
This works perfectly for me:
What I would like to do is rather than display the meaningless BusinessID display the [Business Code].
Does anyone know how I change this?
Thank you.
At the moment I am selecting a value from a dropdown list (populated by the BusinessID value from a database)and adding a value to a text box.
BusinessID is linked to the System table, which is the table that I’m adding to.
This works perfectly for me:
Code:
<%
str_SQL = "INSERT INTO System ([System Code], [BusinessID])"
str_SQL = str_SQL & " VALUES "
str_SQL =str_SQL & "('" & Request.Form("SystemCode") & "', '" & Request.Form("Business") & "')"
Set obj_RS1 = obj_CN.Execute(str_sql, adBoolean)
%>
What I would like to do is rather than display the meaningless BusinessID display the [Business Code].
Does anyone know how I change this?
Thank you.