I have a fileresult method in asp.net mvc4 that returns a report in an excel file. Now how can i return an error message from this method if my conditions are not met !! Since we can only return a file from this method ?!
Thnks
I have a fileresult method in asp.net mvc4 that returns a report in an
Share
You can change signature of action method to
public ActionResult MyMethod()and returnFileResultwhenModelState.IsValid==trueandViewResultwhenModelState.IsValid==false