Problems refrencing Request object - urgent!

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.
 
P

Peter Rilling

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top