I have the same situation. The difference of what I did is I put all .
vb files in web root. My .aspx page can call function in page7.aspx.
vb just fine. But when importing a file like Class2.
vb in page7.aspx.
vb, the .aspx won't recognize the class type in Class2.
vb and throws error like
BC30002: Type 'Class2' is not defined
I even added Namespace in Class2.
vb as suggested by other forum. Not working either. It seems the page7.aspx.
vb is not able to find Class2.
vb, because renaming the imports statement to something doesn't exist
Imports Class2
to
Imports Class2blah
resulting into same error too. It seems this is some sort of config error. Class2.
vb needs to be linked to page7.aspx.
vb in some ways. I'm NOT using MS Studio. Anybody knows a way to make this work without MS studio?