Hallo,
ich habe das Problem, dass ich meine Sessiondaten nicht in Textfelder bekomme.
Ich lasse mir die Daten anzeigen:
Code:
<%
For Each i in Session.Contents
if( Left(i,9) = "fld_ISBN_" and Session("quantity_" & Session(i))>0 ) then
tmpPrice = get_price(Session(i))
PriceAll = PriceAll + (tmpPrice*Session("quantity_" & Session(i)))
summe_netto = PriceAll
ArtikelSumme = (tmpPrice*Session("quantity_" & Session(i)))
response.Write(Session("quantity_" & Session(i)))
response.Write(Session(i))
response.Write(get_titel(Session(i)))
response.Write(get_autor(Session(i)))
response.Write(get_zyklus(Session(i)))
response.Write(get_zyklusband(Session(i)))
response.Write(Formatnumber(tmpPrice,2))
end if
next
%>
allerdings, wird das jetzt natürlich in einer Wurst angezeigt. Wie bringe ich das jetzt in einzelne Textfelder. (Tabelle geht nicht, weil die Textfelder später mit php ausgelesen werden sollen.)
Kann mir da bitte jemand weiterhelfen?
Chainy