home *** CD-ROM | disk | FTP | other *** search
- <%@ Language=VBScript %>
- <%
- text = Request.Form("Jmeno") & vbCrLf
- text = text & Request.Form("Firma") & vbCrLf
- text = text & Request.Form("Ulice") & vbCrLf
- text = text & Request.Form("PSC") & " " & Request.Form("Mesto") & vbCrLf & vbCrLf
- text = text & "Telefon/Fax: " & Request.Form("Telefon") & " / " & Request.Form("Fax") & vbCrLf
- text = text & "E-mail : " & Request.Form("Email") & vbCrLf & vbCrLf
- text = text & "I╚O/DI╚ : " & Request.Form("ICO") & " / " & Request.Form("DIC") & vbCrLf & vbCrLf
- text = text & "Klientovo Φφslo objednßvky : " & Request.Form("Cislo_obj") & vbCrLf
- text = text & Request.Form("Text")
- text = text & vbCrLf & vbCrLf & Request.Form("Poznamka")& vbCrLf
- objednatel = Request.Form("Email")
- text = Replace(text, " ", "+")
- text = Replace(text, vbCrLf, "º")
- text = Replace(text, vbtab, "^")
- Session("objednavka") = text
- cena = Request.QueryString("cena")
- user = Request.QueryString("vs")
- presmerovani = "https://klient1.ebanka.cz/ebts/owa/shop.payment?shopname=SAGIT&creditaccount=104508001&creditbank=2400&amount=" & cena & "&varsymbol=" & user & "&URL=http://www.sagit.cz/shop/zpravaeb.asp&otherparams=objednatel=" & objednatel
- 'Response.write presmerovani
- Response.Redirect presmerovani
- %>
-