Hi All,
Need your help here.
I am currently try to migrate from IIS 5 to IIS 7.5,
Environment setting
IIS 7.5 on windows 2008R2
Application Server on windows 2000
One issue I encountered is the application throwing microsoft VBScript runtime error "800a000d" Type mismatch when it is calling a dcom object function that is expecting String but the classic asp is passing number
Example:
MyAge=1010101
myobject.ShowMyAge(MyAge)
In ShowMySession is expecting String but because of MyAge is numeric it throw the errors microsoft VBScript runtime error "800a000d" Type mismatch .
In IIS 5.0 this is not happening, any idea how to solve the issue beside forcing the value to string e.g cstr(MyAge)
Thanks