October 2016
How to call ASP.Net web method using JQuery AJAX ?
.
In normal ASP.NET web forms, if you want to send any data to server your web page will be refreshed i.e. will do a post back.In some case, if you want to send data to the server without using any…
Java Script Code to detect browser and apply CSS property
.
How to detect browser using Java Script Code and apply CSS property ? As we all know that IE browser behaves unexpected in some cases and need some extra CSS property or change in CSS property to work/view perfectly. Below…
Fault Contract in WCF – WCF Service Tutorial
.
In this article, we will see how to implement Fault Contract in WCF. In typical ASP.Net code we use try catch block to manage exception, but in WCF Fault Contract is used handle exception so that reason of error can…
Data Contract vs Message Contract in WCF – WCF Service Tutorial
.
If you are new to Data Contract and Message Contract. Please read my earlier blogs. Data Contract Message in WCF Data Contract has very less control over SOAP message, while Message Contract has full control. Data Contract vs Message Contract…
Message Contract in WCF – WCF Service Tutorial
.
If you are new to WCF Service, please read my earlier blogs. WCF Introduction and WCF Contracts As we know the default message protocol in WCF is SOAP. Message contract is used to define the SOAP structure. As we know SOAP…
Query with OData in SharePoint 2013
.
OData, i.e. Open Data Protocol, which defines a protocol for the querying and updating of data.In this blog, we will see the use of oData in ASP.Net.OData is a REST-based protocol for querying and updating data and is built on…
What is OAuth?
.
OAuth stands for Open Authorization for token based authentication and authorization over web.OAuth was first introduced in year 2007. In year 2010 OAuth2.0 was introduced. OAuth acts as an agent for a user to fetch the information.OAuth allows a user’s…
How to insert Data using Entity Framework
.
If you are new to Entity Framework, then read my earlier blog – Introduction to Entity FrameworkThis blog will help you about How to insert data into sql using Entity Framework.I have used Database first model approach.HTML File: <html xmlns=”http://www.w3.org/1999/xhtml”>…
Introduction to Entity Framework – Entity Framework Tutorial
.
In my another blog, I have explored about ASP.Net and ASP.Net Core. In this blog, we will see about Entity Framework. What is Entity Framework? Entity Framework is an object-relational mapping which allows developers to work with relational databases. Entity Framework…
