Is there a URL validator on .Net?

后端 未结 5 575
失恋的感觉
失恋的感觉 2020-12-28 12:37

Is there a method to validate URLs in .Net, ASP.Net, or ASP.Net MVC?

5条回答
  •  一向
    一向 (楼主)
    2020-12-28 12:50

    static bool IsValidUri(string urlString) {
       try {
          new Uri(urlString);
          return true;
       } catch {
          return false;
       }
    }
    

提交回复
热议问题