hey guys, i've got another question for you. another basic one seeing i'm only a newbie.i'm currently writing a forum using sql server and asp. i have a procedure that i'm passing variables to through Request.String("variable_name") i'm having trouble passing strings that have '," and keywords in them. i assume that i'd have to put " " marks around my string but i'm not sure how.this is how i am currently putting the variables in: <%dim dataConn, rsset dataConn = Server.CreateObject("ADODB.Connection")set rs = server.CreateObject("ADODB.Recordset")dataConn.Open "DSN=intranet;uid=intranet;pwd=intranet"rs.open "exec Post " & Request.QueryString("Forum_ID") & "," & Request.QueryString("Icon_ID") & "," & Request.QueryString("Subject") & "," & Request.QueryString("Body")& "," & Request.QueryString("User_ID"), dataConn%>i'd be very grateful if one of you guys could give me a hand as to how i go about ficing this problem. thanking you in advance,bronsonhttp://www.users.bigpond.com/thefullmontybronty