Import namespace in codebehind

  • Thread starter Thread starter DaveF
  • Start date Start date
What exactly do you mean? Do you just need to know:

using System;
using System.Text;
....

or am I misunderstanding you?
 
DaveF said:
How do you do this?

On the *project* level you need to reference the dll containing that namespace.
In codebehind you can either use the full classname, or add a "using" clause so
you can use just the classnames.

Hans Kesting
 
Back
Top