Ask a Question related to Dreamweaver AppDev, Design and Development.
-
jefreywith1f #1
Creating a Dynamic form
I want to create a form where the user enters their family members' names and
ages. An input on the form will ask the user to enter the number of people in
the family, then the form will generate the required fields for entering the
name and age of each person. Not sure how to go about this. Can I create a
singe set of inputs for name & age and apply a repeat region based on the
number of family members entered by the user? I'm using DWMX04 ASP.NET VB and
SQL. Geoff
jefreywith1f Guest
-
Creating Dynamic Flash Tab Form
Hello I am very new and am trying to learn as much as I can, But I am having a hard tiem getting my head bent around this stuff. I have a table... -
Need help creating dynamic form
I guess I am just looking for some php help here more than anything. I want to know if it is possible to do the following things in php. I have a... -
creating a dynamic menu, help please
hello could someone please tell me how to create a vertical dynamic menu/navigation bar that holds buttons and responds to mouse movement within... -
Creating Dynamic graphs
Hi, I am a beginner in Flash MX action Scripting. I am trying to create a dynamic graph :a histogram to display the frequency distribution. The... -
Creating Dynamic Display
Well the easiest way is to define the over state of the button to be the big text Peter -- Peter Lee Novel Games - Free Game Downloads and... -
Drew #2
Re: Creating a Dynamic form
This should help out a little... just copy and paste all the code into a new
ASP/VBScript page and run it... You will have to do some modification of
the code, but this should get you on the right track...
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
</head>
<body>
<form name="form1" method="get" action="">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input name="MemberNum" type="text" id="MemberNum">
<input type="submit" name="Submit" value="Submit"></td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</form>
<%
Dim Num
Num = Request.QueryString("MemberNum")
If Num <> "" Then
For i = 1 to Num
Response.Write("<table width='100%' border='0' cellspacing='0'
cellpadding='0'><tr><td width='9%'>Name</td><td width='91%'><input
type='text' name='textfield'></td></tr><tr><td>Blah</td><td><input
type='text' name='textfield'></td></tr><tr><td>Blah</td><td><input
type='text' name='textfield'></td></tr><tr><td>Blah</td><td><input
type='text' name='textfield'></td></tr><tr><td>Blah</td><td><input
type='text'
name='textfield'></td></tr><tr><td> </td><td> </td></tr></table>")
Next
End If
%>
</body>
</html>
"jefreywith1f" <webforumsuser@macromedia.com> wrote in message
news:d3ohil$8iv$1@forums.macromedia.com...>I want to create a form where the user enters their family members' names
>and
> ages. An input on the form will ask the user to enter the number of people
> in
> the family, then the form will generate the required fields for entering
> the
> name and age of each person. Not sure how to go about this. Can I create a
> singe set of inputs for name & age and apply a repeat region based on
> the
> number of family members entered by the user? I'm using DWMX04 ASP.NET
> VB and
> SQL. Geoff
>
Drew Guest



Reply With Quote

