|
|
|
|
|
| | |
|
vbscript active server pages ASP vbscript SQL database informix oracle SQL Server Perl CGI Delphi PHP source code code sample samples program 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
|
|
|
|
|
|
|
|
|
|
|
|