Hi, what would be the best way to create long static urls in asp.net MVC? For example say I wanted to create the following url.
Ex:
/Packages/Somepackage/package a
|
|
Hi, what would be the best way to create long static urls in asp.net MVC? For example say I wanted to create the following url. Ex: /Packages/Somepackage/package a
|
||
|
|
|
|
Create some standard routes definitions, like these:
Then create a controller names Packages and some actions in it like this: Define the action like this:
|
||||
|
|
|
If you are doing this for search engine optimization, there might be a better way. Examining the URL for this question, you will see that there is a controller called
The long static part of the URL is just a parameter in the controller method, stored as a text field in the database. You can put anything in that field that you want, as long as you separate the words with dashes (which is what the search engines seem to prefer anyway). It is an optional one too, so that links like
...also work. |
||
|
|