Asp.net missing an assembly reference
-
these are not finding in my webpage..i am trying to add System.web.dll..i couldn't see that name... i checked by rightclicking project and add reference..there also i din't find tht assembly.. using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; The type or namespace name 'Security' does not exist in the namespace 'System.Web' (are you missing an assembly reference?) can anyone answer???
-
these are not finding in my webpage..i am trying to add System.web.dll..i couldn't see that name... i checked by rightclicking project and add reference..there also i din't find tht assembly.. using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; The type or namespace name 'Security' does not exist in the namespace 'System.Web' (are you missing an assembly reference?) can anyone answer???
System.Security[^] is a seperate assembly which you need to add.
Manas Bhardwaj Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
-
these are not finding in my webpage..i am trying to add System.web.dll..i couldn't see that name... i checked by rightclicking project and add reference..there also i din't find tht assembly.. using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; The type or namespace name 'Security' does not exist in the namespace 'System.Web' (are you missing an assembly reference?) can anyone answer???
Add
System.Web.dll
from Add References . You will find the dll at the Framework Directory. If your .NET 2.0 installed in C:\Windows\Microsoft.NET\Framework\
add that dll, then try :)cheers, Abhijit CodeProject MVP Web Site:abhijitjana.net
-
Add
System.Web.dll
from Add References . You will find the dll at the Framework Directory. If your .NET 2.0 installed in C:\Windows\Microsoft.NET\Framework\
add that dll, then try :)cheers, Abhijit CodeProject MVP Web Site:abhijitjana.net
hey i can find System.Web.dll in C:\Windows\Microsoft.NET\Framework\..how to add to my project..i have to copy tht dll file and paste it somewhere in my project..
-
hey i can find System.Web.dll in C:\Windows\Microsoft.NET\Framework\..how to add to my project..i have to copy tht dll file and paste it somewhere in my project..
mahichandu wrote:
hey i can find System.Web.dll in C:\Windows\Microsoft.NET\Framework\..how to add to my project..
In your project. Right click and select "Add Reference..." A dialog will pop up (usually after some seconds - It is quite slow at starting) In the .NET tab look in the list for System.Web or System.Security (what ever you are trying to add) and hit Okay.
Man who stand on hill with mouth open wait long time for roast duck to drop in
-
hey i can find System.Web.dll in C:\Windows\Microsoft.NET\Framework\..how to add to my project..i have to copy tht dll file and paste it somewhere in my project..
hey i found the way to add ..thnx
modified on Thursday, June 11, 2009 12:39 PM
-
System.Security[^] is a seperate assembly which you need to add.
Manas Bhardwaj Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
Manas, how does System.Security will add the namespace System.Web.Security??
cheers, Abhijit CodeProject MVP Web Site:abhijitjana.net View My Recent Article
-
Manas, how does System.Security will add the namespace System.Web.Security??
cheers, Abhijit CodeProject MVP Web Site:abhijitjana.net View My Recent Article
Belive me I wasn't drinking while posting this. ;) Somehow, only read Security and came to conclusion. My ignorance. :(
Manas Bhardwaj Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
-
Belive me I wasn't drinking while posting this. ;) Somehow, only read Security and came to conclusion. My ignorance. :(
Manas Bhardwaj Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
Manas Bhardwaj wrote:
Belive me I wasn't drinking while posting this.
:beer: :)
cheers, Abhijit CodeProject MVP Web Site:abhijitjana.net View My Recent Article