VBScript...

  • Thread starter Thread starter 116
  • Start date Start date
1

116

I am very new to this, I am trying to have a function get the number from a
'Results' (MaxOfLN) and add '1' to it and populate a textbox (LN01)in a form.
I have been messing with...
<script type="text/vbscript">
Function LOTN
LN01 = MaxOfLN.value + "1"
Document.write(LN01)
End Function
</script>
I would call this in the 'Body' onload="". Any help would begreatly
appreciated.

Thanks
David
 
I would recommend against not using vbScript client-side, as it will only
work in IE. I would probably go with javascript
 
Back
Top