http://free.7host07.com/Wover/form.asp
daarnet werkte de eerste link nog wel ze
der is ook nog een probleem met aantal, ge moet maar eens zien, hij geeft altijd iets anders dan het aantal vakken da ge ebt ingegeven 
kzal de codes weergeven, k eb geen css gebruikt ofzo en de standaard dreamweaver brol staat er ook nog bij:
Code:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Topicgenerator [Stap 1/3]</title>
<style type="text/css">
<!--
body {
background-color: #000033;
}
body,td,th {
color: #FFFFFF;
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
}
.style1 {font-size: 36pt}
.style2 {font-size: 12pt; }
-->
</style></head>
<body>
<div align="center">
<p class="style1">Buy & Sell automatische topicmaker</p>
<p class="style2">Via dit formulier wordt automatisch BBcode gegenereerd om Buy&Sell topics te maken. Vul de formulieren hieronder in.</p>
<form id="frm1" name="formulier1" method="post" action="form2.asp">
<table width="721" border="0">
<tr>
<td width="125">Aantal objecten </td>
<td width="160"><input name="txtAantalObjecten" type="text" id="txtAantalObjecten" /> </td>
<td width="422"><em>Geef het aantal objecten dat je wenst te verkopen in </em></td>
</tr>
<tr>
<td height="48"> </td>
<td><div align="center">
<input name="cmdVolgende" type="submit" id="cmdVolgende" value=">> Verdergaan >>" />
</div></td>
<td> </td>
</tr>
</table>
</form>
<p class="style2"> </p>
</div>
</body>
</html>
Code:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%
Dim Aantal, Teller
Aantal = request.form("txtAantalObjecten")
aantal = aantal + 1
%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Topicgenerator [Stap 2/3]</title>
<style type="text/css">
<!--
body,td,th {
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
color: #FFFFFF;
}
body {
background-color: #000033;
}
-->
</style></head>
<body>
<div align="center">
<p>Specifeer hier gegevens van de objecten die je wenst te verkopen.</p>
<form id="frm2" name="formulier2" method="post" action="resultaat.asp?aantal=<%=aantal%>">
<table width="200" border="0">
<tr>
<td>Naam</td>
<td>Omschrijving</td>
<td>Link naar site </td>
<td>Link naar afbeelding </td>
<td>Minimumprijs</td>
<td>Meeneemprijs</td>
<td>Richtprijs</td>
</tr>
<%
For Teller = 1 to aantal
%>
<tr>
<td><input name="txtNaam<%=Teller%>" type="text" id="txtNaam" /></td>
<td><textarea name="txtOmschrijving<%=Teller%>" id="txtOmschrijving"></textarea></td>
<td><input name="txtLinkInfo<%=Teller%>" type="text" id="txtLinkInfo" /></td>
<td><input name="txtLinkImage<%=Teller%>" type="text" id="txtLinkImage" /></td>
<td><input name="txtMinimumPrijs<%=Teller%>" type="text" id="txtMinimumPrijs" /></td>
<td><input name="txtMeeneemPrijs<%=Teller%>" type="text" id="txtMeeneemPrijs" /></td>
<td><input name="txtRichtPrijs<%=Teller%>" type="text" id="txtRichtPrijs" /></td>
</tr>
<%
Teller = Teller+1
Next
%>
</table>
<p>Specifeer hier nog een korte inleiding en/of slot </p>
<table width="721" border="0">
<tr>
<td width="125">Inleiding</td>
<td width="160"><textarea name="txtInleiding" id="txtInleiding"></textarea></td>
<td width="422"><em>Geef hier een korte inleiding ( bv kameropruiming, of reden van verkoop) </em></td>
</tr>
<tr>
<td>Slot</td>
<td><textarea name="txtSlot" id="txtSlot"></textarea></td>
<td><em>Een korte slotzin, bv "Happy bidding" </em></td>
</tr>
<tr>
<td height="48"> </td>
<td><div align="center">
<input name="cmdVolgende" type="submit" id="cmdVolgende" value=">> Verdergaan >>" />
</div></td>
<td> </td>
</tr>
</table>
</form>
<p> </p>
</div>
</body>
</html>
Code:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%
Dim resultaat, naam, omschrijving, richtprijs, meeneemprijs, minimumprijs, linkimage, linkinfo, aantal, inleiding, slot, teller
aantal = request.querystring("aantal")
aantal = aantal +1
inleiding=request.form("txtInleiding")
slot=request.form("txtSlot")
If inleiding<>"" Then
resultaat= resultaat & vbNewLine & ".1 Inleiding" & vbNewLine & vbNewline & inleiding & vbNewLine & Vbnewline & ".2 Objecten" & VbNewline & vbNewline & "- " & vbNewline & vbnewline
End if
For Teller = 1 to aantal
naam = request.form("txtNaam" & Teller)
omschrijving = request.form("txtOmschrijving" & Teller)
richtprijs = request.form("txtRichtprijs" & Teller)
meeneemprijs=request.form("txtmeeneemprijs" & Teller)
minimumprijs=request.form("txtminimumprijs" & Teller)
linkimage=request.form("txtLinkImage" & Teller)
linkinfo=request.form("txtLinkinfo" & Teller)
resultaat = resultaat & "
- " & Naam & vbNewline & vbNewline & "
- Omschrijving: " & omschrijving & vbNewline & "
- Afbeelding: " & linkimage & vbNewline & "
- Info: " & linkinfo & vbNewline & "
- Richtprijs: " & richtprijs & vbNewline & "
- Minimumprijs: " & Minimumprijs & vbnewline & "
- Meeneemprijs: " & meeneemprijs & "
"
teller=teller+1
Next
resultaat = resultaat & "
"
If slot <> "" Then
resultaat=resultaat & vbNewLine & ".3 Slot" & vbNewLine & vbNewLine & slot & vbNewLine
End if
%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Topicgenerator [Stap 3/3]</title>
<style type="text/css">
<!--
body,td,th {
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
color: #FFFFFF;
}
body {
background-color: #000033;
}
-->
</style></head>
<body>
<div align="center">
<p>Kopieer volgende code in je topic</p>
<p>
<textarea name="txtResultaat" id="txtResultaat"><%=resultaat%></textarea>
</p>
</div>
</body>
</html>
edit: hoe kan ik bbcode hier afzetten?