I want to create a url which starts with # like localhost:/#somename. Can anyone help me?
i tried with custom route constraint,i did not get
//localhost:/#testing
[Route(@"{x:regex([^#]*)}testing")]
public ActionResult testingyash(string x)
{
return View();
}