i have a URL
http://www.mysite.com/RunReport
and a controller action:
[CompressFilter]
public ActionResult RunReport(int field1, int field2, int field3, int field4, int field5, int field6, . . .)
so to run the query with a filter, you wind of having to do something like this:
http://www.mysite.com/RunReport/0/0/0/0/0/1/0. . . .
is there a better way of doing this without such a ugly url and routing?
i want to be able to have persistent URL that maps to specific queries.