I asked a question to get URL as action input here. Now I have a new problem. The passed URL to action changes from http://example.com
to http:/example.com
.
I want to know why and how can I resolve the problem.
P.S: I added this code to resolve but I think there may be another problems in future! the code is:
if ((url.Contains(":/")) && !(url.Contains("://")))
{
url = url.Replace(":/", "://");
}