|
|
|
|
|
| | |
|
Active Server Pages ASP ASP.NET .aspx .ascx Web HTML Developer Internet Microsoft Web Services Visual Studio .NET CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
Re: Create ASP dynamically |
From: |
Tim |
Date: |
8/1/1999 10:16:30 AM |
IP: |
208.168.160.190 |
Also found this kind of handy. Point a form to this piece of code and it will dynamicly create variables from the form posting.
<%
--> create variables dynamicly from a form posting <--
For Each Name In Request.Form
If IsNumeric(Name) Then
Execute(Name & " = " & Request.Form(Name))
Else
Execute(Name & " = " & Chr(34) & Request.Form(Name) & Chr(34))
End If
Next
%>
|
Previous Message
|
|
|
|
|
|
|
|
|
|
|
|