G
Guest
I have ran into a small problem which I am not sure how to resolve. I think
its a bug, but I searched the web and newsgroup and no one else has brought
up the issue. So I think just that i'm a noob when it comes to dot net.
Basically I cannot use the UrlEncode from VC2005 C++. The first porblem is
that intellisense does not show the HttpUtility when I look at the web
namespace.
I thought maybe it was just a intellisense bug so I just manually typed in
the url encode command like this:
String ^text = System::Web::HttpUtility::UrlEncode ("key=text");
But I get these errors during compile:
error C3083: 'HttpUtility': the symbol to the left of a '::' must be a type
error C2039: 'UrlEncode' : is not a member of 'System::Web'
error C3861: 'UrlEncode': identifier not found
Another odd things is the dotnet documenation lists many things in the
system::web namespace, but the VC++ intellisense only shows three items in
the system::web namespace. The ones that are listed are:
System::Web::AspNetHostingPermission
System::Web::AspNetHostingPermissionAttribute
System::Web::AspNetHostingPermissionLevel
I also tried to install VC2005 on two different computers, but I get the
same results.
its a bug, but I searched the web and newsgroup and no one else has brought
up the issue. So I think just that i'm a noob when it comes to dot net.
Basically I cannot use the UrlEncode from VC2005 C++. The first porblem is
that intellisense does not show the HttpUtility when I look at the web
namespace.
I thought maybe it was just a intellisense bug so I just manually typed in
the url encode command like this:
String ^text = System::Web::HttpUtility::UrlEncode ("key=text");
But I get these errors during compile:
error C3083: 'HttpUtility': the symbol to the left of a '::' must be a type
error C2039: 'UrlEncode' : is not a member of 'System::Web'
error C3861: 'UrlEncode': identifier not found
Another odd things is the dotnet documenation lists many things in the
system::web namespace, but the VC++ intellisense only shows three items in
the system::web namespace. The ones that are listed are:
System::Web::AspNetHostingPermission
System::Web::AspNetHostingPermissionAttribute
System::Web::AspNetHostingPermissionLevel
I also tried to install VC2005 on two different computers, but I get the
same results.