ZipError
(1)
Sonnich
(1)
Response.write
(1)
Emailaddress
(1)
Otherways
(1)
Validator
(1)
Contiues
(1)
Surfaces
(1)

Value just contiues (commaseparated?)

Asked By jodleren
13-Nov-09 02:59 PM
Hi all

In a form, I have some hidden values, which once set stays forever.
There is an ignore option, and I keep it, as it might be needed later.
If is default false (<>"true"), that works well.
Just before </from> I set the value.
In 2 places, there is a small script, which can set the value to true.
But the problem is, that it just "grows", second time it is not

Why?

WBR
Sonnich

Code:

response.write request("ignore_mf") & "<br>"
bIgnoreMissing=safe_str(request.form("ignore_mf")) = "true"
request.form("ignore_mf")=""  ' does not help
request.form("ZipError")=""
response.write "bIgnoreMissing= " & cstr(bIgnoreMissing)  & "<br>"

.....
if bIgnoreMissing then
%><%
else
%><%
end if

And this does not set it?

jodleren replied to jodleren
13-Nov-09 02:59 PM
And this does not set it?

class=3D"button2"
onClick=3D"document.forms[0].elements
['ignore_mf'].value=3D'true';">

It is java, so it does not belong here. But I guess the problem is
related to my commaseparated text?

WBR
Sonnich

jodleren wrote on 13 nov 2009 in microsoft.public.inetserver.asp.

Evertjan. replied to jodleren
13-Nov-09 05:31 PM
jodleren wrote on 13 nov 2009 in microsoft.public.inetserver.asp.general:




Why not the far more readable:

if safe_str(request.form("ignore_mf")) = "true" then
bIgnoreMissing = "true"
else
bIgnoreMissing = "false"
end if
%>



--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

wrote:%>'>Well, that did not explain my problem :)

jodleren replied to Evertjan.
16-Nov-09 11:09 AM
%>'>

Well, that did not explain my problem :)
jodleren wrote on 16 nov 2009 inmicrosoft.public.inetserver.asp.
Evertjan. replied to jodleren
16-Nov-09 07:59 AM
jodleren wrote on 16 nov 2009 in
microsoft.public.inetserver.asp.general:


It was not ment to do.

Which shows that a usenet NG is not a paid helpdask.

However I urge you to pay[ ;-) ] attention,
as readable programming surfaces otherways obscure errors.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Can you post the code without snipping?
Dan replied to jodleren
16-Nov-09 11:47 AM
Can you post the code without snipping? I am guessing that the cause of the
problem has been snipped out.

If you keep getting values appended like that, then it is normally caused by
having 2 fields of the same name, each with one of the values. So, for
instance, you have the code above which writes out a hidden field called
ignore_mf and sets it to either true or false, which is fine. But if you
have another hidden field called ignore_mf in the same form, which just has
the value from request.form written into it (maybe you have this for
debugging or testing), then the browser will send both hidden fields, and
the result is the values appended to each other with a comma between them
(because that is how ASP stuffs multiple fields with the same name into a
single value).

I'd suggest you view the source of your form, and look for any duplicated
ignore_mf fields. If you have multiple forms on one page, make sure you have
closed each correctly. Maybe you have more than one form, each has an
ignore_mf field, and because you have omitted a </form> tag they are being
treated as one form (or you have made a HTML error that causes the </form> to
be ignored because it is in the wrong place - use a HTML validator to check
for this).

--
Dan
Post Question To EggHeadCafe