Can I have you bell me out one more time, please?
I have a field on our table that we need to split the values into two.
The value is something like:
I am coming to see you today, Will you be at home?
We would like to split this like:
I am coming to see you today,
Will you be at home?
The field name is certcomment.
I tried to use the below code to splt but it isn't doing anything.
Then the field is tagged here:
Thanks in advance
I have a field on our table that we need to split the values into two.
The value is something like:
I am coming to see you today, Will you be at home?
We would like to split this like:
I am coming to see you today,
Will you be at home?
The field name is certcomment.
I tried to use the below code to splt but it isn't doing anything.
Code:
strDataField = rsData("certcomment")
intMidPoint = Round(Len(strDataField) / 2)
strDataField = Replace(strDataField, " ", "<br>", intMidPoint, 1)
Then the field is tagged here:
Code:
<tr>
<td colspan="4" align="center"><%=(strDataField)%></td>
</tr>
Thanks in advance