Guest_imported
New member
- Jan 1, 1970
- 0
This is the beginning of my page:
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Data.SqlClient;
using System.Web;
namespace testcs
{
/.../
}
For some reason when I try to build I get the following error on the using System.Web line:
"The type of namespace name 'Web' does not exist in the class or namespace 'System'(are you missing an assembly reference?)"
I'm new to C#/.net, so hopefully I'm just missing something. I looked on microsoft's help...and it seems that System.Web should exist...
Any help?
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Data.SqlClient;
using System.Web;
namespace testcs
{
/.../
}
For some reason when I try to build I get the following error on the using System.Web line:
"The type of namespace name 'Web' does not exist in the class or namespace 'System'(are you missing an assembly reference?)"
I'm new to C#/.net, so hopefully I'm just missing something. I looked on microsoft's help...and it seems that System.Web should exist...
Any help?