How to ignore routing of images. I tried many solution including adding:
RouteTable.Routes.Ignore("{*allpng}", new { allpng = @".*\.png(/.*)?" });
RouteTable.Routes.Ignore("{filename}.png");
but it didn't work. I'm not using MVC application.
What is the code to ignore routing of images and where to add it ?
Go to the complete details ...