When I call up a record to edit, one of the fields, in this case "Media Contact" which is made up of a first and last name, returns only the first name. I know! It's bad DB design to combine the fields but the client wanted a single field to fill in and they are paying the bill. I have deduced that it returns everything before the space that sperates the first and last names. The code I use to retrieve the data is:
<input type="text" name="Media_Contact" value=<%=rec("Media_Contact"
%>>
The data type I have set in my SQL DB is "text" with a lenght of "16". I've also tried setting the data type to "varchar" and "char" with no luck. I'm not an SQL or ASP guru and I appreciate any help I can get from you experts!!
<input type="text" name="Media_Contact" value=<%=rec("Media_Contact"
The data type I have set in my SQL DB is "text" with a lenght of "16". I've also tried setting the data type to "varchar" and "char" with no luck. I'm not an SQL or ASP guru and I appreciate any help I can get from you experts!!