Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

while I got error "using System.Web.UI" as namespace not found. I tried to figure it out by adding the reference. But unfortunately in the .NET tab I couldn't find System.Web.UI component while other components were there. How to solve the issue ?

enter image description here

share|improve this question

1 Answer

up vote 2 down vote accepted

EDIT: Okay, my original answer was based on the original version of the question...

Next up: do you have a reference to System.Web.dll which is the assembly which includes at least many of the classes in System.Web.UI?

share|improve this answer
yap that was a typo in my question. Now edited. And yes I want the namespace using System.Web.UI – Md. Arafat Al Mahmud Aug 3 '12 at 18:44
@Md.ArafatAlMahmud: Well that's wasted my time for no reason... please be more careful in future. Do you have a reference to the System.Web.dll assembly? – Jon Skeet Aug 3 '12 at 18:46
I have attached the screenshot what I found on my question. – Md. Arafat Al Mahmud Aug 3 '12 at 18:50
@Md.ArafatAlMahmud: That looks like it's a display oddity... what exact project type do you have? – Jon Skeet Aug 3 '12 at 18:53
I have found the assembly in C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0 and my project type is ASP.NET web application – Md. Arafat Al Mahmud Aug 3 '12 at 18:58
show 2 more comments

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.