I'm setting a variable in Microsoft JScript to another variable that is undefined, i.e.,
var valid = Page_IsValid;
JScript throws the following error
Microsoft JScript runtime error: 'Page_IsValid' is undefined
Somehow this doesn't strike me as correct. Shouldn't it just ignore the assignment -- I don't do anything with Page_IsValid beyond assigning it to the variable.
Page_IsValidis out of scope? EDIT: ah.. I see when you said "variable that is undefined" you meant "undefined variable", not "variable which value is undefined". Wow. My reading comprehension is wack today. – ZenMaster Sep 14 '11 at 14:00