Featured
-
How to enable CORS (Cross-Origin Requests) in ASP.NET Web API
There are certain steps that need to be followed f
by gaurav.gautam -
Why does my CHM have a blank content pane?
Hello Readers, Many times I have heard that, many
by Chetan.Sharda -
How to connect to icloud calendar?
Hello coder's world, To connect to icloud calen
by govind.chauhan -
Working with List in Provider Hosted App for Sharepoint
Sharepoint List in Provider Hosted App This Blo
by shubham.mamgain -
REST attributes of WCF Service
Objective: In this article we will explain what a
by govind.chauhan
Tags
Why choose Microsoft Partner for next .NET Web Development Project?
.NET is basically a software structure that has been developed by Microsoft and is mostly used in Microsoft Windows. The large class library included here is called Framework Class Library (FCL) which facilitates the property of interoperability ...
How to Transform XML Data As HTML Using XSLT in ASP.NET MVC
XSLT
XSL stands for eXtensible Stylesheet Language used for XML styling. XSLT in turn stands for XSL transformations i.e transformation of XML documents into different specific/design formats like XML transformation into Html.
&nb...
ASP.NET MVC : Parse XML Documents by XMLDocument and XDocument
Parse XML Documents by XMLDocument and XDocument
It is not a common practice to directly work on xml documents. In ASP.NET MVC whenever there is raw XML document available,to use them parsing is required. For parsing XML documen...
View Without Controller Action in ASP.NET MVC
View Without Controller Action in ASP.NET MVC
In MVC, the request from browser actually comes in the form of "controllername/actionname" where the request is actually directed to actionname in the controller which then...
ASP.NET MVC : Form Submission using Enter Key via jQuery
ASP.NET MVC : Submit Form using Enter Key
Sometimes there is a scenario or requirement of posting the form on pressing the "Enter" key in asp.net mvc. This functionality can be achieved via jQuery in MVC.
Creat...
Remote Validation in ASP.NET MVC
Remote Validation in ASP.NET MVC
Remote Validation is similar to an ajax call used for validating the user's input. The main purpose of remote validation is execution of back end query without performing a full server postba...
An MVC application with Entity framework with Code First Approach
An MVC application with Entity framework with Code First Approach
Following steps are to be followed :
Step 1 : In visual studio 2015 create a new C# ASP.NET Web project named Student_Management_System. Select the MVC te...
What is the difference between ViewResult and ActionResult in ASP.NET MVC?
ViewResult and ActionResult in ASP.NET MVC
ActionResult is an abstract or base class. On the other hand ViewResult is a subclass of ActionResult.
Whenever Controller action return type is ActionResult then the action is ...
HttpClient Class
HttpClient class is used to send the http request and receive http response by URL.
It is defined inside the System.Net.Http namespace.
HttpClient is instantiated once and re-used throughout the life of an application.
Properties:
I...
Few user management operations using Identity Framework in ASP.NET MVC
In this blog you will see some code samples that you might find useful while accomplishing simple user management tasks like creating a user, assigning a role and so on. Following code samples assume that you have created an ASP.NET MVC applicati...
Prevention from Cross Site Request Forgery attacks in ASP.NET MVC
In this blog we will get to know about the way to prevent CSRF (Cross Site Request Forgery) attacks in ASP.NET MVC applications. If you want to have some idea about this attack you would like to have a look at this blog http://findnerd.com/list/v...