I am using Umbraco in MVC.
I have create a dynamic page in MVC umbraco that works with querystring parameter
http://www.example.com/City?id=1&type=9
http://www.example.com/City?id=5&type=6
http://www.example.com/City?id=6&type=4
Inside Umbraco I have content page named City (along with its DocumentType and template) and in my MVC project the Controller and Action Method names are City and City (action method takes parameter id and type).
Now I need to create multiple pages out of it sharing the functionality of page "City" e.g
http://www.example.com/City/A?id=1&type=9
http://www.example.com/City/B?id=5&type=6
http://www.example.com/City/C?id=6&type=4
Each of these pages needs to display same dynamic content depend on Querystring parameter along with some fix content that I want to be managed by CMS.
How do I create above pages in Umbraco? How to create above Url? How to share Code in my original "City"" page?
I am new to Umbraco so please advise.