Problems refrencing Request object - urgent!

  • Thread starter Thread starter Terry Jeske
  • Start date Start date
T

Terry Jeske

I just started a new project and I cannot refernce the http Request
object. I have done this in other projects on this system, but for
some reason when I create a new project .Net does not refernce this
properly. I also get the same problem trying to reference the Server
object i.e. Server.Mappath.

Here are the namespaces.
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;


when I type

Request.

The intellisense does not work.

Server.

The intellisense does not work.

Any ideas? I have a tight deadline and this really going to mess it
up.

Thx.
 
Is it just a problem with intellisence or a problem with the Request object.
Sometime intellisence will not work consistently.

Try calling an operation on the Request object and compiling the code to see
if the compiler also has problems with it.
 
Back
Top