I am trying to make a select box have 2 values from a RecordSet
i have managed to do this but i am having trouble spacing the columns evenly
i have tried to force the length of the first column but can only do this by inserting a chacator not spaces? Can anybody help me put spaces in or point me in a different direction.
Group=mid(myRS("title"),4,50)
Des =myRs("Description")
length = len(group)
MaxLength = "15"
Result = maxlength - length
Response.Write "<option value = '" & title & "'>"
Response.Write Group
response.Write string(result,"*")
response.Write des
i have managed to do this but i am having trouble spacing the columns evenly
i have tried to force the length of the first column but can only do this by inserting a chacator not spaces? Can anybody help me put spaces in or point me in a different direction.
Group=mid(myRS("title"),4,50)
Des =myRs("Description")
length = len(group)
MaxLength = "15"
Result = maxlength - length
Response.Write "<option value = '" & title & "'>"
Response.Write Group
response.Write string(result,"*")
response.Write des