B
Benign Vanilla
I am a ASP.NET newbie so please bear with me.
I had a series of webforms working on my web site, and then I made some
tragic error that is causing all kinds of problems. The main symptom is that
when I try to declare a control in my code, I can no longer reference the
proper type.
The old code looked like this:
Protected WithEvents lstcat As Swap.NET.categorylist
Where Swap.NET is the name of my project within my solution. Now, I can only
declare the control as:
Protected WithEvents lstcat As categorylist
When I try to declare it as in the first example, I get an error, "Type
swap.net.categorypicklist" not defined.
What did I do, and how do I fix it?
BV.
I had a series of webforms working on my web site, and then I made some
tragic error that is causing all kinds of problems. The main symptom is that
when I try to declare a control in my code, I can no longer reference the
proper type.
The old code looked like this:
Protected WithEvents lstcat As Swap.NET.categorylist
Where Swap.NET is the name of my project within my solution. Now, I can only
declare the control as:
Protected WithEvents lstcat As categorylist
When I try to declare it as in the first example, I get an error, "Type
swap.net.categorypicklist" not defined.
What did I do, and how do I fix it?
BV.