public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.aspx/{*pathInfo}");
should be in the global asax
(i have found that it works without this - don't know why)
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.aspx/{*pathInfo}");
should be in the global asax
(i have found that it works without this - don't know why)