Answers for "c# check if url contains string"

3

check if url contains string

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript">
  $(document).ready(function() {
    if (window.location.href.indexOf("franky") > -1) {
      alert("your url contains the name franky");
    }
  });
</script>
Posted by: Guest on June-01-2020
0

valid URL check in c#

public static bool CheckURLValid(this string source) => Uri.TryCreate(source, UriKind.Absolute, out Uri uriResult) && uriResult.Scheme == Uri.UriSchemeHttps;
Posted by: Guest on September-30-2020

Code answers related to "c# check if url contains string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language