Hejsa jeg er ved at lave en side hvor man kan opdatere hvilke interasser man har her er noget af koden:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title></title>
<style type="text/css">
<!--
.style1 {font-weight: bold}
-->
</style>
</head>
<body><b>Skift interasser</b>
<form action="default.asp?showfile=intskift.asp" method="post" name="form" id="form">
<table width="450" border="0">
<tr>
<td width="150"><strong>
<input name="Videnskab" type="checkbox" id="Videnskab" value="checkbox">
Videnskab</strong></td>
<td width="150"><strong>
<input name="Gå i byen" type="checkbox" id="Gå i byen" value="checkbox">
Gå i byen </strong></td>
<td width="150"><strong>
<input name="Lave musik" type="checkbox" id="Lave musik" value="checkbox">
Lave musik </strong></td>
</tr>
<tr>
<td><strong>
<input name="Naturvidenskab" type="checkbox" id="Naturvidenskab" value="checkbox">
Naturvidenskab</strong></td>
<td><strong>
<input name="Tegne/male" type="checkbox" id="Tegne/male" value="checkbox">
Tegne/male</strong></td>
<td><strong>
<input name="Job/Karierre" type="checkbox" id="Job/Karierre" value="checkbox">
Job/Karierre</strong></td>
</tr>
<tr>
<td><strong>
<input name="Natur" type="checkbox" id="Natur" value="checkbox">
Natur</strong></td>
<td><strong>
<input name="Kunst" type="checkbox" id="Kunst" value="checkbox">
Kunst</strong></td>
<td><strong>
<input type="checkbox" name="checkbox" value="checkbox">
Venner/fritid</strong></td>
</tr>
<tr>
<td><strong>
<input name="Camping" type="checkbox" id="Camping" value="checkbox">
Camping</strong></td>
<td><strong>
<input name="Kultur" type="checkbox" id="Kultur" value="checkbox">
Kultur</strong></td>
<td><strong>
<input name="checkbox" type="checkbox" class="style1" value="checkbox">
Bolig/inretning</strong></td>
</tr>
<tr>
<td><strong>
<input name="Friluftsliv" type="checkbox" id="Friluftsliv" value="checkbox">
Friluftsliv </strong></td>
<td><strong>
<input name="Antigviteter" type="checkbox" id="Antigviteter" value="checkbox">
Antigviteter</strong></td>
<td><strong>
<input name="checkbox" type="checkbox" value="checkbox">
Teater</strong></td>
</tr>
<tr>
<td><strong>
<input name="Have" type="checkbox" id="Have" value="checkbox">
Have</strong></td>
<td><strong>
<input name="Mad/vin" type="checkbox" id="Mad/vin" value="checkbox">
Mad/vin</strong></td>
<td><strong>
<input name="checkbox" type="checkbox" value="checkbox">
Litteratur</strong></td>
</tr>
<tr>
<td><strong>
<input name="Dyr" type="checkbox" id="Dyr" value="checkbox">
Dyr</strong></td>
<td><strong>
<input name="Rejser" type="checkbox" id="Rejser" value="checkbox">
Rejser</strong></td>
<td><strong>
<input name="checkbox" type="checkbox" value="checkbox">
Historie</strong></td>
</tr>
<tr>
<td><strong>
<input name="Teknik" type="checkbox" id="Teknik" value="checkbox">
Teknik</strong></td>
<td><strong>
<input name="Born" type="checkbox" id="Born" value="checkbox">
Børn</strong></td>
<td><strong>
<input name="checkbox" type="checkbox" value="checkbox">
Religion</strong></td>
</tr>
<tr>
<td><strong>
<input name="Computer" type="checkbox" id="Computer" value="checkbox">
Computer </strong></td>
<td><strong>
<input name="Familie" type="checkbox" id="Familie" value="checkbox">
Familie</strong></td>
<td><strong>
<input name="checkbox" type="checkbox" value="checkbox">
Yoga</strong></td>
</tr>
<tr>
<td><strong>
<input name="IT og tele" type="checkbox" id="IT og tele" value="checkbox">
IT og tele </strong></td>
<td><strong>
<input name="Sport" type="checkbox" id="Sport" value="checkbox">
Sport</strong></td>
<td><strong>
<input name="checkbox" type="checkbox" value="checkbox">
Samler</strong></td>
</tr>
<tr>
<td><strong>
<input name="Foto" type="checkbox" id="Foto" value="checkbox">
Foto</strong></td>
<td><strong>
<input name="Dans" type="checkbox" id="Dans" value="checkbox">
Dans</strong></td>
<td><strong>
<input name="checkbox" type="checkbox" value="checkbox">
Igangsætter</strong></td>
</tr>
<tr>
<td><strong>
<input name="Film/biograf" type="checkbox" id="Film/biograf" value="checkbox">
Film/biograf</strong></td>
<td><strong>
<input name="Hore musik" type="checkbox" id="Hore musik" value="checkbox">
Høre musik </strong></td>
<td><strong>
<input name="checkbox" type="checkbox" value="checkbox">
Andet</strong></td>
</tr>
</table><br>
<input type="submit" name="Submit" value="Opdater">
</form>
<p> </p>
</body>
</html>
og her er den side der skal opdatere alt det der:
<%
If session("brugernavn") = "" then
Response.Redirect "default.asp?showfile=formular.asp"
End if
%>
<%
' Databaseforbindelse - husk at angive sti til din database
Set Conn = Server.CreateObject("ADODB.Connection")
DSN = "DRIVER={Microsoft Access Driver (*.mdb)}; "
DSN = DSN & "DBQ=" & Server.MapPath ("login.mdb")
Conn.Open DSN
Set rs = Conn.Execute(strSQL)
Response.Redirect "default.asp?showfile=start.asp"
Conn.Close
Set Conn = Nothing
%>
Så skal der jo være noget sql men det driller det jeg har prøvet med og nu kan jeg ik finde selve sql koden så ville jeg bare høre er der nogle der har nogle forslag til hvad man kan gøre???..
PS Den skal indsætte interasserene i rs("I1").
Håber virkelig at i kan hjælpe!