VBScript...

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
 
M

Mike Mueller

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top