Frågan#1
Ibland vet jag inte om d hade varit enklare att inte använda dreamweavers inbyggda paging och sånt men well...
' create the list of parameters which should not be maintained
MM_removeList = "&index="
If (MM_paramName <> "") Then
MM_removeList = MM_removeList & "&" & MM_paramName & "="
End If
MM_keepURL=""
MM_keepForm=""
MM_keepBoth=""
MM_keepNone=""
' add the URL parameters to the MM_keepURL string
For Each MM_item In Request.QueryString
MM_nextItem = "&" & MM_item & "="
If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
MM_keepURL = MM_keepURL & MM_nextItem & Server.URLencode(Request.QueryString(MM_item))
End If
Next
Som ni kanske utläser är detta en funktion för att ta bort ett visst querystring värde. Jag vill utöka detta till ett till, nämligen &colorID=.
Har provat i en timme nu men får det bara inte att fungera.
Nån som vill ge det ett försök?
Jymdis