Is there any way to pass multiple paramters by using params keyword to an action method with GET as below?
http://.../Method/param1/param2/param3/..../paramN
Action method should be as below:
public ActionResult Method(params string[] parameters)
{
//Do what ever.
}