berdu 0 Posted September 30, 2012 Report Share Posted September 30, 2012 (edited) Hi there guys, I have a serious problem, couldnt solve it. My problem; Im posting some Form values which are integer and i catch them with a "For each in Request.form()" at server side.But there is 1 textarea which i dont wanna get in the "For each" loop. ------------------my codes are : (they work without any problems for me) so practicaly i dont wanna get the Request.Form("description") in the loop belove. how can i by pass or ignore it ? Thank you for answers <%......For Each x in Split(Request.Form(),",") GP = Split(x,"&")GA = Ubound(GP)for i = 0 to GA ayir = split(GP(i),"=")YID = ayir(0)adet = ayir(1) set rs = Server.CreateObject("ADODB.RecordSet")rs.open "select * from Tbl" , conn , 1 , 3rs.addnewrs("IEID") = Request.QueryString("EI")rs("YID") = YIDrs("Adet") = adetrs.update nextnext %> Edited September 30, 2012 by berdu Quote Link to post Share on other sites
berdu 0 Posted October 1, 2012 Author Report Share Posted October 1, 2012 I found the solution, thread can be closed Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.