The type or namespace name 'UI' cannot be found for using System.Web.UI
- by user284523
I am following the tut here
http://msdn.microsoft.com/en-us/library/h59db326.aspx
#
Create an App_Code directory directly
under the root directory of your Web
site (also called Web application
root).
#
Copy the source file for the control
(WelcomeLabel.cs or WelcomeLabel.vb)
to the App_Code directory.
But I got the error on
using System.Web.UI;
using System.Web.UI.WebControl;
I have tried to add System.Web as Reference but that still doesn't resolve the stuff. I can't see System.Web.UI and System.Web.UI.WebControl in the reference lists is this normal ?
Thanks.