Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I can't compile a project because the namespaces System.Web.UI and System.Web.Security are missing. I can only see System.Web.ApplicationServices, System.Web.Mvc and System.Web.Services when I do add references. Where do I download the missing namespaces?

share|improve this question

4 Answers

up vote 6 down vote accepted

Go to menu Project -> Add reference and find out the System.Web.dll in the list

alt text

share|improve this answer
You mean under the Assembilies menu? I can't see System.Web.dll. – ABCD Jan 13 '11 at 0:51
Which version of VS are you using? – Lorenzo Jan 13 '11 at 0:53
Visual Studio 2010 Premium. – ABCD Jan 13 '11 at 0:55
Then open the Reference dialog from Project -> Add Reference. Then you will be able to find the lib under Assemblies -> Framework. Have a look at my answer edit for details – Lorenzo Jan 13 '11 at 0:59
1  
I found out by changing the framework profile from .Net Framework 4 Client Profile to .Net Framework 4, System.Web appears in the list. While I can choose System.Web, I'm still unable to choose System.Web.UI. – ABCD Jan 13 '11 at 1:06
show 1 more comment

I don't know about System.Web.UI, but System.Web.Security moved to the System.Web.ApplicationServices assembly in .NET 4.0 Framework.

share|improve this answer

Following Kinderchocolate's suggestion, I switched to ".Net Framework 4" in my project's Properties (VS 2010), and that caused "System.Web" to appear in the assemblies list. From then on I was finally able to use System.Web.UI.

So I'm not sure what failed for kinderchocolate, but his change worked for me.

share|improve this answer

Yes, Kinderchocolate is correct. Once you add the Reference System.Web to your project, then in the code you can add using System.Web.UI and all sub-components of System.Web.UI, e.g. System.Web.UI.HtmlControls.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.