Tuesday, July 10, 2018

Consuming a Google URL Shortener API from C#

Many of us have faced issues while sharing a URL with others because it's too long to be shared in its original form. Such long URLs affect the readability and flow of your message. URL shortening is a technique by which a Uniform Resource Locator (URL) is made substantially shorter in length, which is easily shareable and it redirects the user to the required page.

Creating an HTML Helper in ASP.NET MVC

HTML Helper is just a method that returns the HTML content in a view. Developers can use HTML helpers to render standard HTML tags such as HTML ,

Best Practices for Improving Web Application Performance

Improving Web application performance is critical. Users wants a more lightweight application which runs quicker and gives a better response time. In this article, I will suggest a few tips to improve the performance of an ASP.NET Web application by taking advantage of the following components.

Mocking API Responses in Azure API Management Portal

A mock API imitates a real API call by providing a realistic JSON or XML response to the requester. Mock APIs can be designed on a developer...