using this to display first record of multivalued field
Dim strIchar, strItext, intIcount, strIname
strIchar = chr(178)
strItext = RS("i_name")
intIcount = Instr(strItext, strIchar)
If intIcount = "0" Then
Response.Write strItext
Else
strIlname = mid(strItext, 1, intIcount-1)
Response.Write strIname
End If
I need to display rest of data and would like to maybe insert a carriage return at every point where a special character lies that serparates each record.
Mike
|