Lo all,
Ik heb dus een forumuliertje dat runt op het script van een site die iedereen mag gebruiken, maarja, als die site nu weg gaat heb ik nix meer aan dat forumielier.
De server ondersteund wel asp, maar heeft zelf geen mailform script...
kan iemand mij de asp code geven voor een form dat er zo uitziet:
[Sorry voor de 'lap']
[en JA, ik heb de search gebruikt, maar ik kan er nix duidellijks uithalen]
Ik heb dus een forumuliertje dat runt op het script van een site die iedereen mag gebruiken, maarja, als die site nu weg gaat heb ik nix meer aan dat forumielier.
De server ondersteund wel asp, maar heeft zelf geen mailform script...
kan iemand mij de asp code geven voor een form dat er zo uitziet:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
| <form name="Join AAC" method="POST" action="http://cgi-bin.griffin.net.uk/mailform.asp">
<input type="hidden" name="Subject" value="AAC JOIN FORM">
<input type="hidden" name="Recipient" value="[mijn email]">
<input type="hidden" name="SuccessURL" value="[url]">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan="2">Yes, finally i fixed the whole form, you can now fill it
in and press Send/Submit, without any problems!</td>
</tr>
<tr>
<td width="53%">
<table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#FFCC00">
<tr>
<tr>
<td width="54%" bgcolor="#FFCC00"><b>Your Real name:</b></td>
<td width="46%">
<input type="text" name="realname:" value="[Your real name]">
</td>
</tr>
<tr>
<td width="54%" bgcolor="#FFCC00"><b>Your Email (optional)</b></td>
<td width="46%">
<input type="text" name="email:" value="name@provider.com">
</td>
</tr>
<tr>
<td width="54%" bgcolor="#FFCC00"><b>Your Current Playername:</b></td>
<td width="46%">
<input type="text" name="playername:" value="ON FW!!">
</td>
</tr>
<tr>
<td width="54%"><b>Your Skill</b></td>
<td width="46%">
<select name="Skill:">
<option>Good</option>
<option selected>Normal</option>
<option>Bad</option>
</select>
</td>
</tr>
<tr>
<td width="54%"><b>You Are in a clan currently?</b></td>
<td width="46%">
<select name="in a clan?">
<option>Yes</option>
<option selected>No</option>
</select>
</td>
</tr>
<tr>
<td colspan="2"><b>You can Add here your comments:</b></td>
</tr>
<tr>
<td width="54%">
<textarea cols="35" rows="5" name="comments:">Typ Here your comments...</textarea>
</td>
<td rowspan="2" width="46%">
<div align="center"> <br>
<input type="submit" name="Submit2" value="Send/Submit">
<br>
<input type="reset" name="reset2" value="Reset">
</div>
</td>
</tr>
</table>
</td>
<td width="47%" align="left" valign="bottom"><b>Make sure you filled in
everything!</b></td>
</tr>
</table>
</form> |
[Sorry voor de 'lap']
[en JA, ik heb de search gebruikt, maar ik kan er nix duidellijks uithalen]