HI How do u pass a '/' as a paramter in a wcf service rest way. e.g if the user name has the domain includes "domain/userName"
thanks
HI How do u pass a '/' as a paramter in a wcf service rest way. e.g if the user name has the domain includes "domain/userName"
thanks
The escape string for / is %2F. If you're asking how to do this programatically, the use Uri::EscapeDataString
.