about 11 months ago - No comments
When developing a RESTful Web service in ASP.Net MVC I was looking for a HTTP Test client that I can be used to test the RESTful API that I had created. It is easy to test HTTP GET with a browser. What I was looking for in the tool was the ability to HTTP POST/PUT/DELETE More >
about 1 year ago - No comments
Piers Lawson wrote excellent series of articles to guide you to write RESTful web service using ASP.Net MVC framework.
There are several parts (24 at the time of writing this post). But I think the first 12 parts are good for beginners to start with.
Part 1 – Part 2 – Part 3 – Part 4 – More >
about 1 year ago - No comments
In order to create a Web API for one of our products, I am learning about RESTful Web Services.
If you are just starting on REST, then here is the link that explains REST very clearly: How to Create a REST Protocol
To supplement this it is important to know the Common REST mistakes that developers make.
Thanks
about 2 years ago - No comments
Recently I migrated my classic ASP website to ASP.Net MVC. However, there were many websites still linking to specific .asp pages that no longer exist. I looked for some help on Google so that I could easily redirect the legacy URLs to the new one.
Thanks to Mikesdonetting post that gave me that ‘real code’. You More >
about 2 years ago - No comments
I am learning ASP.Net MVC and I am loving it.
In the process of migrating our existing classic asp website to ASP.Net MVC we realized that we would still need an .asp file as part of the web app. It’s the redirect.asp file that all our products call to go to different parts of our website.
Fortunately, More >
about 2 years ago - No comments
I am learning ASP.Net MVC now and loving it. If you to read more praises about ASP.Net MVC search for MVC on StackOverflow.
Ok. Not every time you may want to return a View for an action. Sometimes, you must just return some XML or string.
To do this just use the this.Content function to return ActionResult.
return More >
about 2 years ago - No comments
If you are just starting with ASP.Net MVC (Model View Controller) framework then here are the must read articles to learn the basics. These articles will get you clear picture about the framework.
ASP.NET MVC Framework (Part 1)
ASP.NET MVC Framework (Part 2) – URL Routing
ASP.NET MVC Framework (Part 3) – Passing ViewData from Controllers to More >