Featured
-
How Regression Testing Detects Integral Errors In Business Processes
Humans are forever changing and evolving and so to
by kristina.rigina -
Get Display Banner Advertising Opportunity on FindNerd Platform
“Do you have a product or service that nee
by manoj.rawat -
Android O Released with Top 7 New Features for App Developers
Android was founded by Andy Rubin, Rich Miner, Nic
by sudhanshu.tripathi -
Top 5 Features That Make Laravel the Best PHP Framework for Development
Laravel is a free open source Web Framework of PHP
by abhishek.tiwari.458 -
Objective C or Swift - Which Technology to Learn for iOS Development?
Swift programming language is completely based on
by siddharth.sindhi
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...
Asp.net MVC: AngularJs Pagination
Asp.net MVC: AngularJs Pagination
AngularJs allow pagination through uib-pagination directive.
Example to demonstrate Asp.net MVC angularjs Pagination.
Asp.net MVC StudentController:
using System.Web.Mvc;
namespace Mvc...
Asp.net MVC: AngularJs ng-include
Asp.net MVC: AngularJs ng-include
AngularJs ng-include directive allows an HTML page to embed various other HTML pages. In Asp.net MVC AngularJs ng-include allows inclusion of various views(cshtml pages) in a view(cshtml page).
.cshtml page...
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...