You just need the action as a parameter (along with the route data):
return RedirectToAction("ViewDataFiles", new { catid = 14 });
If you also want to specify a controller (by default, it corresponds to the current controller), you can do this as follows:
return RedirectToAction("ViewDataFiles", "AdministerFiles", new { catid = 14 });
source share