Самоучитель по креативному веб-дизайну. Книга 4, стр.41
HTML
DIM trStart, trEnd ‘
DIM custName (1) ‘ Массив из двух элементов
DIM totalDue ‘
tableStart =
»
tdLeft = «
»
trStart = «
trEnd = «
»
custName(0) = «Конрад»
custName(1) = «Кинг»
totalDue =234.25
v
With Response
.Write tableStart
.Write trStart
.Write tdLeft & «Имя» & tdEnd
.Write tdRight & custName(0) & tdEnd & trEnd
.Write trStart
.Write tdLeft & «Фамилия» & tdEnd
.Write tdRight & custName(1) & tdEnd & trEnd
.Write trStart
.Write tdLeft & «Итого» & tdEnd
.Write tdRight & totalDue & tdEnd & trEnd
.Write tableEnd
End With
%>