Thanx for the help... I will now also put the source here so u can help me even further...
This is the AddToBasket.asp file:
<%
Dim oCmd
Dim BasketID, MerchantID, Quantity
Dim strSQL
BasketID = Request("BasketID"

MerchantID = Request("MerchantID"

Quantity = Request("Quantity"
Set oCmd = Server.CreateObject("ADODB.Command"

With oCmd
.ActiveConnection = "DSN=SYCENT;"
strSQL = "INSERT INTO BasketContent(BasketID, MerchantID, Quantity) VALUES(" & BasketID & ", " & MerchantID & ", " & Quantity & "

"
.CommandText = strSQL
.Execute
Set .ActiveConnection = Nothing
End With
Set oCmd = Nothing
%>
and this is the ShowArt.asp file:
<html>
<head><title>Global Kockknivar</title></head>
<body bgcolor="#FFFFFF" text="#000000" link="#008000" vlink="#800000" alink="#808000">
<%
Dim oRs
Dim strSQL
Set oRs = Server.CreateObject("ADODB.Recordset"

With oRs
.ActiveConnection = "DSN=SYCENT;"
'DB Hintar
.CursorLocation = 3
.CursorType = 3
.LockType = 4
strSQL = "SELECT * FROM Merchants " & _
"WHERE Id = " & Request("ID"
.Open strSQL
Set .ActiveConnection = Nothing
Response.Write "<div align=""center""><font size=""7"" FACE=""Verdana, Arial"" COLOR=""#D61303"">" & oRs("Name"

.Value & "</font><br>"
Response.Write "<div align=""center""><img src=" & oRs("Picture"

.Value & " ALT=" & oRs("Name"

.Value & " BORDER=""0""></div><br>"
Response.Write "<FORM NAME=""BasketForm"""><table border=""1"" ALIGN=""RIGHT"">"
Response.Write "<tr><td><b><div align=""center"">Pris inkl. moms</div></b></td><td><b><div align=""center"">Antal</div></b></td>"
Response.Write "<td><b><div align=""center"">Beställ</div></b></td></tr>"
Response.Write "<tr><td><div align=""center""><b>" & oRs("Pris"

.Value & "kr</b></div></td>"
Response.Write "<td><div align=""center""><b><input type=""text"" size=""3"" name=""Quantity"" value=""1""></b></td>"
Response.Write "<a href=""AddToBasket.asp?MerchantID=" & oRs("Id"

.Value & "&BasketID=11&Quantity=" & Request.Form("Antal"

& """>"
Response.Write "<td><INPUT TYPE=""SUBMIT"" VALUE=""Lägg till""></td></tr></table></form><br>"
Response.Write "<div align=""center""><font size=""3"" face=""Verdana, Arial""><b>" & oRs("Beskrivning"

&"</b></font></div>"
.Close
End With
Set oRs = Nothing
%>
</body>
</html>
can u pls tell me how to rewrite my code to achive the goal:
To pass the value from the text box named Quantity to my AddToBasket.asp file? pls help me...