Input values from excel to webform using Autoit

11/26/2017 05:40 punittewani#1
Please help me with the code

Local $aResult = _Excel_RangeRead($oWorkbook, 1, "A2:B7", 2)
For $i = 0 To UBound($aResult)-1
$sName = $aResult[$i][0]
Local $text = _IEGetObjByName($oIE,"message")
_IEFormElementSetValue ($text, $sName )
$sNumber = $aResult[$i][1]
Local $Mobileno = _IEGetObjByName($oIE,"mobile")
_IEFormElementSetValue ($Mobileno, $sNumber)

Local $button1 = _IEGetObjById($oIE,"send")
_IEAction($button1,"click")

my excel is attached.

Please help me with the code.