---
title: "For"
type: "forum-thread"
url: "https://www.webforum.nu/amne/asp/71078-for"
topic: "ASP"
topic_url: "https://www.webforum.nu/amne/asp"
author: "Asa"
published: "2003-03-14T11:17:35.000Z"
updated: "2003-03-14T11:21:48.000Z"
replies: 2
views: 149
page: 1
pages: 1
language: "sv-SE"
site: "webForum — webforum.nu"
rights: "Upphovsrätten till varje inlägg tillhör dess författare."
attribution: "Citera som: webForum, https://www.webforum.nu/amne/asp/71078-for"
---

# For

## #1 — Asa, 2003-03-14T11:17Z

Varför funkar ej detta? Alltså baklänges.

\<%For i=1985 To 1911
    Response.Write i & "\<br\>"
Next%\>

Permalänk: https://www.webforum.nu/p/71078

## #2 — @nders, 2003-03-14T11:20Z

Du måste specificera att du ska springa baklänges också.

```
<%
For i=1985 To 1911 [b]step -1[/b]
Response.Write i & "<br>" 
Next
%>
```

Permalänk: https://www.webforum.nu/p/977621

## #3 — Asa, 2003-03-14T11:21Z

Ahh. Tackar :)

Permalänk: https://www.webforum.nu/p/977622

---

Tråden på webben: https://www.webforum.nu/amne/asp/71078-for
