case 3649
This commit is contained in:
@@ -5499,10 +5499,13 @@ At first I was happy to find your code that solved my problem, but I did not lik
|
||||
|
||||
try
|
||||
{
|
||||
if(sUrl.ToLower().StartsWith("http://"))
|
||||
//case 3649 changed this block to handle https urls
|
||||
if (sUrl.ToLower().StartsWith("https://"))
|
||||
System.Diagnostics.Process.Start(sUrl);
|
||||
else if(sUrl.ToLower().StartsWith("http://"))
|
||||
System.Diagnostics.Process.Start(sUrl);
|
||||
else
|
||||
System.Diagnostics.Process.Start("http://" + sUrl);
|
||||
System.Diagnostics.Process.Start("https://" + sUrl);//was http before case 3649
|
||||
|
||||
}
|
||||
catch(Exception ex)
|
||||
@@ -8514,9 +8517,9 @@ At first I was happy to find your code that solved my problem, but I did not lik
|
||||
get
|
||||
{
|
||||
if(AyaBizUtils.Lite)
|
||||
return "http://www.ayanova.com/AyaNovaLite7webHelp/";
|
||||
return @"https://www.ayanova.com/AyaNovaLite7webHelp/";
|
||||
|
||||
return "http://www.ayanova.com/AyaNova7webHelp/";
|
||||
return @"https://www.ayanova.com/AyaNova7webHelp/";
|
||||
}
|
||||
}
|
||||
#endregion help url
|
||||
|
||||
Reference in New Issue
Block a user