Jeg har en form, der tjekker om indholdet af de forskellige felter er korrekte. Hvis de er korrekte aktiverer den en sessionparameter.
eks.
<% If not Request.Form(\"fontcolor\") = \"\" Then %> <% Session(\"varFONTCOLOR\") = Request.Form(\"fontcolor\") %>
Dette gør den ved alle felterne i formen, og når de allesammen har fået en værdi, skal den redirecte til en anden side. Ikke et sekund før.
Hvordan tjekker jeg dem alle sammen?
p.s
Jeg har prøvet med følgende kode uden succes
If not Session(\"varURL\") = NULL and not Session(\"varNAVN\") = NULL and not Session(\"varEMAIL\") = NULL and not Session(\"varOVERSKRIFT\") = NULL and not Session(\"varBGCOLOR\") = NULL and not Session(\"varFONT\") = NULL and not Session(\"varSIZE\") = NULL and not Session(\"varPOSTNUMMER\") = NULL and not Session(\"varALDER\") = NULL and not Session(\"varFONTCOLOR\") = NULL and not Session(\"varHJEMMESIDENAVN\") = NULL Then Response.Write \"hurra\" End If
Fjern not´erne i If not Session(\"varURL\") = NULL and not Session(\"varNAVN\") = NULL and not Session(\"varEMAIL\") = NULL and not Session(\"varOVERSKRIFT\") = NULL and not Session(\"varBGCOLOR\") = NULL and not Session(\"varFONT\") = NULL and not Session(\"varSIZE\") = NULL and not Session(\"varPOSTNUMMER\") = NULL and not Session(\"varALDER\") = NULL and not Session(\"varFONTCOLOR\") = NULL and not Session(\"varHJEMMESIDENAVN\") = NULL Then Response.Write \"hurra\" End If
den her siger \"fejl\" hvis alle sessions er forskellig fra Null (0), og hurra hvis alle sessions er udfyldte...
If Session(\"varURL\") <> NULL and Session(\"varNAVN\") <> NULL and Session(\"varEMAIL\") <> NULL and Session(\"varOVERSKRIFT\") <> NULL and Session(\"varBGCOLOR\") <> NULL and Session(\"varFONT\") <> NULL and Session(\"varSIZE\") <> NULL and Session(\"varPOSTNUMMER\") <> NULL and Session(\"varALDER\") <> NULL and Session(\"varFONTCOLOR\") <> NULL and Session(\"varHJEMMESIDENAVN\") <> NULL Then Response.Write \"hurra\" Else Response.Write \"Fejl\" End If
en variabel er ikke null når den ikke er sat, prøv istedet
if IsEmpty(Session(\"varURL\")) ... osv
Synes godt om
Ny brugerNybegynder
Din løsning...
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.