here is link for webcamera capture and submit
http://www.c-sharpcorner.com/UploadFile/4d9083/capturing-image-from-web-cam-in-Asp-Net/
its working fine ok but i need captured image in image box after clicking submit btn.
thanks in advance
Loading
Pedro CristianPosted Feb 12, 2015, 3:11 AM
If you have a valid image data in a base64String, you can create a memory stream object from this base64 data using the Convert.FromBase64String method. After this, you can create a valid system.drawing.image object using the Image.FromStream method. This should work with most cases.
But in case you have a lot of files to deal with, you might need to compress your images to save space on disk. For this purpose, you might need to use a programming SDK (leadtools) which supports different types of compressions (JPEG, LZW, CCITTG4, etc).