Well, I had a huge question giving this correct name, my excuses for this.
Anyway, I started looking slowly at Web and ASP.NET again, I am a C # developer, but I have mainly worked with Windows applications for the last 5 years or so. Not that I didn’t touch the Internet, such as at that time, but it’s like web services (Restfull, as well as ugly SOAP services). I also worked with more raw web requests.
But I have not worked with IIS or ASP.NET all this time.
What I would like to do is a hos webpage that uses a URL style that I could better describe using "like rest", hence the header "Restfull urls". Since I think most people think of such a URL in terms of:
http://example.com/item/ http://example.com/item/23/
etc. Not that they looked like this, but I would like to use such a URL instead
http:
I know that the subtext does this, but I was not lucky to find it in the code base.
Now, as far as I can tell, I could just implement some IHttpHandler, but at least for the examples I saw, they write the source code of the page into code, and I still have master pages, etc. I want to use instead of taking over all this, I really just want to direct http://example.com/item/23/ to http://example.com/item and request an element with id 23 ...
I hope this makes sense at all>. <... And someone has some of the best examples on hand that I could find.