Quote:
Originally posted by Roelf
in this line:
var v_fldvalue = Request.Form(v_fld);
you try to enter the value from a posted (method = post) formfield into variable v_fldvalue. The fieldname you are querying is stored in the variable v_fld. As far as i can see in your code, this variable is not filled with a value, so it is undefined. i think it is trying to look at a formfield with the name: undefined, this is prbably not found
|
Sorry typo error by myself - should read as :-
var v_fldvalue = Request.Form(v_fldname);
With the above the correct variable is being referenced but the <% ASP %> section below cannot read the value - why is this ?? Ideas appreciated..