Tuesday, February 28, 2017

How to get image from the physical path (Local Drive) in asp.net C#?


You can create a virtual path i.e (folder) in the application called “Images” and save the images into it. When the user uploads the images using the file upload control,

more details:

Monday, February 27, 2017

How to convert GIF format to static jpeg format in asp.net C#?

animated moving pictures Gif to jpg image
In this article, I will show you to convert animated moving pictures i.e GIF format to static image. It take the first frame from the GIF image and create a static image without loosing quality.

more details

JQuery sortable example using dropzone.js

jquery sortable example
We cannot not sort the image in dropzone area using Dropzone Js.So we can use jQuery ui plugin to achieve this. And also, I will show you how to highlight the dropzone area using the CSS.

more details:

Friday, February 24, 2017

How to clear the fields after submitting a form in asp.net MVC?


In this article, I will show you how to clear form after submit in asp.net MVC. Before, when I submitting the asp.net mvc form; the page fields are not cleared; the problem on resetting of all form fields.

more details:

Translate a page to other languages- Google translate plugin




In this article I will show you how to translate a page to other languages using the google translate plugin. Just you need to register a translate plugin and piece of JavaScript code on the page or master page.

more details:

Thursday, February 23, 2017

How to bind dropdownlist in asp.net MVC using Entity framework.


In this example I am going to explain How to create DropDownList using MVC .net.Here, I am binding the MVC dropdownlist from model object (myDatabaseEntity) using entity framework.

more details:

Sunday, February 19, 2017

How to set limits for file upload in dropzone.js ?

multiple file upload jquery
The jQuery file upload plugin Dropzone.js
supports maxFiles option. You can set simply desired number for file upload
like this maxFiles:1. If you set one, then it will allow one file at a time. Further,
you can call maxfilesexceeded function. It will delete the preview of the first
file and add the new one. 
more details