error in Web.UI-missing assembly
-
hi I have created a class where I am creating custom control for my web page the problem is that i am getting error like this
The type or namespace name 'UI' does not exist in the class or namespace 'System.Web' (are you missing an assembly reference?
in the using System.Web.UI; using System.Web.UI.WebControls; what is the actual cause for this error ? and how i can rectify it I am not good in C# thanks in advance kal13na13
-
hi I have created a class where I am creating custom control for my web page the problem is that i am getting error like this
The type or namespace name 'UI' does not exist in the class or namespace 'System.Web' (are you missing an assembly reference?
in the using System.Web.UI; using System.Web.UI.WebControls; what is the actual cause for this error ? and how i can rectify it I am not good in C# thanks in advance kal13na13
kal13na13 wrote:
are you missing an assembly reference?
So... Are you? See the references section of your project, is there a System.Web reference in there? If not add it by right clicking references, select "Add Reference..." Find "System.Web.dll" in the list (in the .NET Tab), double click it then press okay.
My: Blog | Photos "Man who stand on hill with mouth open will wait long time for roast duck to drop in." -- Confucius
-
kal13na13 wrote:
are you missing an assembly reference?
So... Are you? See the references section of your project, is there a System.Web reference in there? If not add it by right clicking references, select "Add Reference..." Find "System.Web.dll" in the list (in the .NET Tab), double click it then press okay.
My: Blog | Photos "Man who stand on hill with mouth open will wait long time for roast duck to drop in." -- Confucius