

Microsoft VBScript runtime error '800a000d'
Type mismatch: '[string: "Lt07"]'
/yom0044/shop_cart1.asp, line 119
The Cause of Code 800A000D
Your VBScript contains an illegal method, probably due to a typing mistake, an extra letter. Look for a clue opposite the phrase Error: Type mismatch.... In particular, double check the spelling of your objects.
Note 1: Source: Microsoft VBScript runtime error. This is not a syntax error in the sense of a missing bracket, more a typo in the keyword mentioned in the Error: line of your WSH Message.
Note 2: Error: Type mismatch: 'Join'. Chuck says this could mean that you are logged on as an ordinary user and not an administrator.
Note 3: What I have found, is that there need not be any errors per say in the script in order to receive the type mismatch join error. But what the cause has been for two of my recent experiences, is that the user in question, is only a part of a single group that isn’t
1. A domain built-in group. 2. Query based distribution groups.
The join statement fails in this case because the CurrentUser.MemberOf only contains a single value so when it tries to append the next value, there is no array for it to search through. One fix would be to add error handling around this statement, so that if it fails, it runs the same line except without the join statement. The other option is of course to ensure your users are a part of more than one security or static distribution group. I haven’t experimented with whether local domain, global or universal have an effect on this either, but I would imagine not. Nathan Bicknell
taken form above website
possible solution
Had extra "P" "CARTPPRICE"
error solved

No comments:
Post a Comment