|
|
|
|
|
| | |
|
Active Server Pages what is asp programming how to sample asp example code scripts software asp forum mail sessions applications global.asa CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
Re: Dynamically create command buttons |
From: |
Harlan |
Date: |
2/15/1999 11:53:48 AM |
IP: |
206.222.20.2 |
Im going to assume you are going to get a number back (the number of buttons you want to create). Its pretty easy from there to loop and create your buttons.
Sub createInput(numInput)
For i = 1 to numInput
response.write "<input type=text name=" & i & " value=" & i & ">"
Next
End Sub
that should create as many buttons as you pass to it. I doubt its what you really needed, but you can change it to your liking. |
Previous Message
|
|
|
|
|
|
|
|
|
|
|
|