Passing multiple parameters to a page

What's the best practice to pass multiple parameters when opening a page?
I'm trying using the parameters normally, but the router is complaining when I pass more than 1 parameter...
"Error: Cannot match any routes."

It should be straight forward. Just make sure you pass the parameters in the same order. Here is a sample application.
multiple-parameters.zip (6.2 KB)

1 Like

Oh I got it.
Because the second parameter is optional, I wasn't passing it everywhere. I'm passing now a dummy value on those cases and now it's working perfectly.