asp.net - No .aspx page suffix, how come? -
how come stackoverflow hasn't .aspx page suffix in url bar? ends in /something/ or /page
how can achieve same in asp.net?
instead of webforms (and aspx pages) use mvc , it's routing feature (see http://www.asp.net/mvc/overview/controllers-and-routing) url mapped "action" in "controller".
a url of /questions/25364620/whatever
mapped "index" action (a default value) of "questionscontroller" ("questions" url + "controller"), id parameter of 25364620. title ignored.
Comments
Post a Comment