How to Capture image of HTML5 camera in asp.net
In this blog I am going to capture image of HTML5 camera and store in a file using asp.net Step 1. Open Visual Studio => File => new => website Step 2. Give the name of application Step 3. Add New Page Step 4. Add Jquery min js link inside head tag <script src="https://code.jquery.com/jquery-1.11.3.min.js" type="text/javascript"></script> Html Markup and script <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Capture.aspx.cs" Inherits="Capture" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>HTML5 Camera </title> <style type="text/css"> .style1 { width: 600px; ...