I am using JQuery webcam plugin Here is the home page It seem very useful, but my problem is I don\'t know how to save image using asp.net (without using php).
You could do:
webcam.save('/path_to_your_aspx');
And, server-side:
var file = Request.Files[0]; //Save file to database or whatever you want to do
Hope this helps. Cheers