Latest posts on tagged on "MVC"

cascading dropdownlist in asp net mvc example

19 November 2016

In this article, I will show you how to create cascading dropdownlist in asp.net mvc using jQuery. When the user selects the first dropdown, on the dropdown change jQuery, it loads the product dropdownlist.

Solved:Parser Error Message: Could not load type OpenAuth.MvcApplication

18 November 2016

I got this following error while running the application. It was happened after updating nuget package using the package manager console. It was fixed by deleting all files from the bin folder of the project. Right click on the project and click clean and build.

No assembly found containing an OwinStartupAttribute

17 November 2016

I got the following error while running the application. I have created a simple chat application using signalR in asp.net mvc. I have installed signalR in the project by nuget package manager console and registered signalR hub in the page.

SignalR mvc example in asp.net

17 November 2016

SignalR is an open source library is used to build real time web applications. When more than one user working on an application, when one user making changes, meanwhile the other user can see the changes without reloading the web page.

How to implement captcha in asp.net mvc?

16 November 2016

In this article, I will show how to create captcha in asp.net mvc. A captcha is a validation Layer is used to recognize the type of user before sending data to the server side. It helps to avoid the spam messages or users.

Knockout js tutorial with asp.net mvc

13 November 2016

In this article, I will show you a knockout Ajax example, with curd operations using jQuery. Knockout js is a free open source library. It is small and lightweight JavaScript Library. I have built a web form to display records and do curd operations (insert, update and delete) using Northwind Database customer table.

How to implement URL shortener google API in asp.net application?

12 November 2016

The google URL shortener allows you to make URL shortened which will expand, when the user access on it, will get a full original URL form. Normally it is suitable for sharing your articles or image URL path over social websites like google plus, Facebook, Twitter etc.

How to create custom error page in asp.net MVC?

8 November 2016

In this article, I will show you how to add custom error page in web config using asp.net MVC. If application got any error you can invoke asp.net 404 page.