I set up my project as follows:
- Make empty ASP project
- Add index.aspx
- Add url mapping for index to Web.config
Great, it works. Now I want to call a function inside the aspx file, I go ahead and make the function
Class Class1
    Public Shared Function SayHi() As String
        Return "Hi"
    End Function
End Class
and go on to the aspx file and start writing
<% Class1.
but intellisense offers no autocomplete, in fact its as if the class doesn't even exist. How can I achieve this simple task?
 
    