Category: MVC

Hidden field not getting updated

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. …

Request.IsAuthenticated always returning false MVC

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, …

Updates Not Being Reflected in Azure Website

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 …

Databound Function in KendoDropdownList

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 …