---
title: "For, datum sats"
type: "forum-thread"
url: "https://www.webforum.nu/amne/asp/11060-for-datum-sats"
topic: "ASP"
topic_url: "https://www.webforum.nu/amne/asp"
author: "Arne"
published: "2001-08-11T15:01:00.000Z"
updated: "2001-08-11T15:55:00.000Z"
replies: 3
views: 164
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/11060-for-datum-sats"
---

# For, datum sats

## #1 — Arne, 2001-08-11T15:01Z

Jag håller på att bygga en almenacka och vill lista upp namnen på veckodagarna, men denna sats listar söndag till lördag och jag vill lista måndag till söndag.

Vad göra???????

		Response.Write "\<TR\>"
	For i = 1 To 7 
		Response.Write  "\<TD Width='14%'\>" & left(WeekDayName(i), 3) & "\</TD\>"
	Next
		Response.Write "\</TR\>" & vbCrlf

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

## #2 — icaaq, 2001-08-11T15:16Z

```
Response.Write "<TR>"
For i = 1 To 7 
Response.Write "<TD Width='14%'>" & WeekdayName(i), True, 2) & "</TD>"
Next
Response.Write "</TR>" & vbCrlf
```

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

## #3 — cyprys, 2001-08-11T15:51Z

```
<%
Response.Write "<TR>"
For i = 1 To 7 
Response.Write "<TD Width='14%'>" & WeekdayName(i, True, 2) & "</TD>"
Next
Response.Write "</TR>" & vbCrlf
%>
```

 ;)

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

## #4 — icaaq, 2001-08-11T15:55Z

hmmm... :r , men vad är igentligen en parantes.....

 :)

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

---

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