Name <whatever> not declared?!?!?! Aaargh!!

  • Thread starter Thread starter Scott M.
  • Start date Start date
Building a simple ASP.Net page under VS '03 (Visual Basic) with methods
defined on a "code-behind" page, and I keep getting a "Name <whatever> is
not declared" on each of the method invocations. Am I missing some kind of
DECLARE or USES here (even tho the PAGE directive includes the CODEBEHIND
clause)??

This is probably real simple, but what the HECK is going on here?!?!? :)
Jack
 
Declaring a variable/field:

Dim s As String
Private DS As DataSet
Public d As Double

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Back
Top