The Open Data Protocol (OData) is a Web protocol for querying and updating data that provides a way to unlock your data and free it from silos that exist in applications today. OData does this by applying and building upon Web technologies such as HTTP, Atom Publishing Protocol (AtomPub) and JSON to provide access to…
ASP.NET WEB FORMS
ASP.NET Web API is a framework for building HTTP services that can reach a broad range of clients including browsers, phones and tablets. ASP.NET Web API ships with ASP.NET MVC 4 and is part of the Microsoft web platform. You can read more about Web API in my earlier article @ http://65.1.162.244/blog/say-hello-to-asp-net-web-api/ As I mentioned…
ASP.NET MVC 4 now includes ASP.NET Web API, Which is formerly known as WCF Web API. In this article I am not digging into any details of Web API. I am going to explain through a sample how to create a Web API as part of ASP.NET MVC 4 solution. Web API is not just…
Hi Everyone, Daily .NET Tips is aiming to sharing useful coding tips and tricks for .NET Developers. This site completely design for sharing Tips and Tricks, useful Code Snippet which anyone use in daily development work and targeted anything related with .NET. Lets put a few frequently interesting tips which we have already published over…
When we create a page in ASP.NET, Framework internally creates a .NET class. i.e: An instance of System.Web.UI.Page class. All the content in ASP.NET page including scripts, HTML content and plain text is compiled into .NET class. When a client request for ASP.NET page then ASP.NET Framework searches for a .NET class corresponding to the…
HTTP protocol is stateless protocol. Each time you request a web page from the web server, from a web application perspective, you are a completely new person. HTTP protocol can’t remember the data of a request once it is submitted to the web server so we can’t use the request data of one request in…