Thursday, July 7, 2016

Custom routing in MVC

The OOB routing module in MVC has somewhat rigid routing capabilities, an alternative can be Nuget package at https://www.nuget.org/packages/MvcCodeRouting/1.0.2 which enables routing based on namespaces.

No comments:

Regex Email validation in c# dot net core

 Use this regex /^_?[a-zA-Z0-9]([a-zA-Z0-9]*[._+-])*[a-zA-Z0-9_]+@(?!-)[A-Za-z0-9-]{1,63}(?<!-)(\.(?!-)[A-Za-z0-9-]{1,63}(?<!-))*\.[A-...