
Search In
"Creating a DropDownList from an Enum in ASP.NET MVC"
In this article I will try to explain, how can we bind an Enum to a DropDownList in ASP.NET MVC.
Let us understand it with the help of an example:
Step 1: Create an Asp.
If you are a programmer, you will undoubtedly be used to the annoying and ungrateful task of testing your code over and over again until you make sure it works. What's more, you should also make sure that your program does exactly what you want i
Json.Net is a popular high-performance JSON framework for .NET
Features of Json.NET :
1. It provide JSON serializer for converting between .NET objects and JSON
2. It supports Binary JSON,XML to JSON, JSON to XML, LINQ to JSON c
When we want to use piece of code again and again want to make it reusable throughout the application we will make it a partial view.
Partial view is like user control in a normal web application that is created and placed anywhere in the pa
Uni-polar Encoding
Unipolar encoding is a variant of the line code. A positive voltage in it represents a binary 1 , and the no voltage is represented from binary 0.
This kind of encoding use one kind of polarity t
Cloud computing has made it possible for businesses of all sizes to avail computing services on the web, thereby eliminating the need of buying own servers, software licenses, hardware etc. There is no ne
An action filter is an attribute. You can apply action filter over the entire controller or over its particular action.
Action filters in MVC are the attribute that can be used accroding to the user need before or after the program gets exec
In the code first approach we will create the class for defining the attributes for the DBContext
First we will create a class for defining attributes
public class Employee
{
public Employee ()
{
Union is a derived type as structures are. Union can be declared in the same manner as structures just the keyword used in defining union in union where keyword used in defining structure was struct.
union car{
char name[50
In divide and conquer approach the problem is subdivided into smaller problems, and then the sub problems we solved one by one and then they are integrated at last.
Broadly, we can expand it into a three way process:
Divid
