how can i access system.web classes in a managed class library?
Managed C++/CLI
2
Posts
2
Posters
0
Views
1
Watching
-
In the "Add Reference" dialog (_not_ "Add Web Reference"), on the ".NET" tab, scroll down and select "System.Web.DLL". Add it to the project references by clicking the Select button, then OK. Alternatively, you can manually identify references to the compiler in code with #using, or on the command line with the "/FU" flag. Nick Hodapp This posting is provided “AS IS” with no warranties, and confers no rights. You assume all risk for your use. © 2003 Microsoft Corporation. All rights reserved.