Here is my code,
After picture is read from CSV file, I need to trim the string but keep the same variable name.
would end up as
folder3/picture.jpg
I couldn't thank you enough for any assistance....
Ken
Code:
<%
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open Application("SourceFile_ConnectionString")
Set RS = Conn.Execute ("SELECT * From input.csv")
Dim iCnt
Do Until RS.EOF
iCnt = iCnt + 1
message = RS("message")
author = RS("author")
phone = RS("phone")
email = RS("email")
picture = RS("picture")
category = RS("category")
RS.MoveNext
Loop
RS.Close
Conn.Close
%>
After picture is read from CSV file, I need to trim the string but keep the same variable name.
would end up as
folder3/picture.jpg
I couldn't thank you enough for any assistance....
Ken