Category: MVC
In web application development we often need to use the hidden fields inside the form, the field may contains any data like primary key of table, username etc. Any data that we don’t want people see. So what will happened if your Hidden field not getting updated ? You whole module work flow may affected due to this problem. …
I created new project and I did setup routes and other necessary functions, now it was turn for form authentication. I follow up all necessary steps, required to validate the user like creating cookie etc like below: var userData = JsonConvert.SerializeObject(serializeModel); var expiryDate = model.RememberMe ? DateTime.Now.AddDays(14) : DateTime.Now.AddDays(1); var ticket = new FormsAuthenticationTicket(1, model.UserName, DateTime.Now, …
In this post I have described the problem and solution of the Dropdown not displaying selected value in case of list of model Sometimes during programming we have some cases where we need to use list of model. There can be many examples like we need to save multiple user bank accounts or credit cards or we …
In this article I will demonstrate that how we can fix issue of “Updates Not Being Reflected in Azure Website” Sometimes things are not in our hand and this frustrate us. So the main question is why its happening? Why Updates Not Being Reflected in Azure Website? Well I also don’t know exactly why changes not being reflected on …
In this article, I am going show you how we can call any javascript’s function after ajax request in Kendo DropdownList or we can say databound functionality in Kendo DropdownList. Kendo DropdownList tool provides very beautiful look and effects and there are many different ways of binding options are available like you can bind data with ajax …
In this article I am going to show how we can redirect between areas in MVC. When using area, we should always specify the area in route value in the action link. If link/destination is outside from area, then we just need to use an empty parameter for the area. I am going to show you …