how should look the Global.asax file and my Controller’s action to process 2 types of the URL:
http://.../Search
http://.../Search?q=abc&p=1&...&...&...& (many parameters, do I have to list all
of them in the Global.asax file ?)
?
No, you don’t have to list them all in your global.asax file, just have them as optional parameters in your action.
e.g.
If you’re not able to use default values, just make them nullable.
e.g.
Savvy?
HTHs,
Charles