In ASP.NET MVC, Generally we have three options for passing data from Controller to View and in the request.
And that three options are :
1. ViewBag
2. ViewData and
3. TempData
ViewBag and ViewData are basically same and TempData have some additional responsibilities to perform.
ViewBag...
Wednesday, February 25, 2015
Tuesday, December 23, 2014
Check whether an email address is valid or not ?
Some times, we require some common function like Get Random GUID, or some validations like passowrd is strong or not.
So, here i show you the validation of Email address field that checks whether the entered email address is valid or not ?
I have created a function "CheckEmail", which accepts the...
Monday, December 22, 2014
Difference between ApiController and Controller in ASP.NET MVC
In Today's generation all the peoples are very smart. They are using mobiles, tablets etc. device in those days rather than browser and these device have unlimited apps for make a life smooth. At the end, we all are moving from the web world towards the app world.
So, why not we will develop a worth...
Friday, December 19, 2014
MVC Interview Questions and Answers

Model View Controller
By reading these MVC interview question it does not mean you will go and clear MVC interviews. The whole purpose of this Post is to quickly brush up your MVC knowledge before...
Facebook Integration in MVC 3.0 (.Net)
.jpg)
Now, Time for Facebook Integration in .Net MVC 3.0.
Step 1 : Download Library package reference of Facebook from NuGet Package Installer.
Step 2 : import namespace of facebook as like,...