I have about 13 textboxes that have the same name except each one ends in a unique number (i.e. txtPrice1, txtPrice2, etc.)
On the OnSubmit Event, I want to be able to Iterate through each of these and verify that there is something in them, and if so, submit the values to a dll for processing.
Do until x = intCount 'intCount is a serverside variable x is client side
I have Tried the following with no success:
If frmMain.txtPrice(x).value=""
If frmMain.txtPricex.value = ""
If frmMain.txtPrice & x.value=""
If frmMain.txtPrice +x.value = ""
loop
Anyone know of a better way to do this in VBSCRIPT? Tazzmann
On the OnSubmit Event, I want to be able to Iterate through each of these and verify that there is something in them, and if so, submit the values to a dll for processing.
Do until x = intCount 'intCount is a serverside variable x is client side
I have Tried the following with no success:
If frmMain.txtPrice(x).value=""
If frmMain.txtPricex.value = ""
If frmMain.txtPrice & x.value=""
If frmMain.txtPrice +x.value = ""
loop
Anyone know of a better way to do this in VBSCRIPT? Tazzmann