J
Juan T. Llibre
At the very top of your .vb source file
Imports Microsoft.VisualBasic
for example.
If you're using C#, use the "using"
keyword at the top of your .cs source file :
using System;
for example.
Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
======================
Imports Microsoft.VisualBasic
for example.
If you're using C#, use the "using"
keyword at the top of your .cs source file :
using System;
for example.
Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
======================