I am learning WEBClasses in order to support an existing, mission critical, application on my employer's Intranet. In working through the example in Chapter 20, "Internet Information Server Applications", in "Programming Microsoft Visual Basic 6.0" by Francesco Balena, the "If" clause of the following code snippet gets an error:
If BrowserType.VBScript Then
Send " <INPUT type=button value=""Clear fields"" id=btnReset Name=btnReset style=""HEIGHT: 25px; WIDTH: 90px"">"
End If
The message in the error dialog box is:
"Run-Time error '9005':
Active Server Pages BrowserType object is not installed correctly"
I entered the following line in the debug window and got the response that follows:
?err.Source & " Error: " & err.Number & "(0x" & hex(err.Number) & "
, " & err.Description
WebClass Runtime Error: 9005(0x232D), Active Server Pages BrowserType object is not installed correctly
Can anybody tell me what to do?
If BrowserType.VBScript Then
Send " <INPUT type=button value=""Clear fields"" id=btnReset Name=btnReset style=""HEIGHT: 25px; WIDTH: 90px"">"
End If
The message in the error dialog box is:
"Run-Time error '9005':
Active Server Pages BrowserType object is not installed correctly"
I entered the following line in the debug window and got the response that follows:
?err.Source & " Error: " & err.Number & "(0x" & hex(err.Number) & "
WebClass Runtime Error: 9005(0x232D), Active Server Pages BrowserType object is not installed correctly
Can anybody tell me what to do?