Greetings,
Regarding the first Try It Out on pp.475-479:
I'm running the examples on my Win2K3/IIS6/.NET/ASP server.
My Chapter 13 folder has my HelloWorldExample.aspx file. The HelloWorld.
vb file was compiled successfully to Chapter 13\bin\HelloWorld.dll (it was necessary to amend the Path attribute in the environment variables).
When I hit the aspx file in my browser, I get this error message:
Type 'WroxComponents.HelloVB' is not defined.
Just as a check, I downloaded the code for this chapter from the Wrox site and compiled that version of HelloWorld.
vb. I still get the same error message.
In addition, I tried adding the <%@ Import Namespace=WroxComponents" %> tag; same error message.
Next, after adding this import statement, I tried altering the first line of the page_load() sub to read: "Dim MyVBComponent as New HelloVB()". This changes the error to read: "Type 'HelloVB' is not defined."
Evidently the .dll file is not registered with the .NET server, which would explain why it doesn't recognize the WroxComponents namespace or any of the classes or methods.
Suggestions?