Ok,I found a way of sending the excel information in a string variable ins this page http://resources.esri.com/help/9.3/arcgisserver/apis/rest/index.html?gpsubmit.htmlThis is the code I'm using right now, I will make a loop once I my geoprocessing task works properly.strExcel = "{ " & _
"'features' : [ " & _
"{ " & _
" 'attributes' : {'Header1' : 'Data1', 'Header2' : Data2, 'Header3' : Data3} " & _
"} " & _
"} " & _
"} "
parameters.Add(New GPRecordSet("Excel", strExcel))
Hope it helps somebody.