I just tried moving from INPUT TYPE="Submit" to TYPE=Image for the usual reasons, but I hit a reaction in the ASP code handling the submitted page that has me stumped - does anyone have any suggestions how to handle this difference?
Both "Submit" and "Image" perform a submit just fine, but if the name and id of this field is "VolunteerButton" and the handling VB script says:
if not isempty(Request.Form("VolunteerButton") then
Session("TableName" = "Volunteer"
end if
Well, if its a "Submit" type button - this works.
If its an "Image" type button - it evidently remains "empty" - it posted, but the button itself is no longer answering a 'value'. I have a couple submit buttons that perform a similar action but with two different tables. How do I work around this? Any ideas?
Thanks!
Both "Submit" and "Image" perform a submit just fine, but if the name and id of this field is "VolunteerButton" and the handling VB script says:
if not isempty(Request.Form("VolunteerButton") then
Session("TableName" = "Volunteer"
end if
Well, if its a "Submit" type button - this works.
If its an "Image" type button - it evidently remains "empty" - it posted, but the button itself is no longer answering a 'value'. I have a couple submit buttons that perform a similar action but with two different tables. How do I work around this? Any ideas?
Thanks!