JQuery webcam Plugin - save image without PHP

前端 未结 4 1569
说谎
说谎 2021-01-07 11:45

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).

4条回答
  •  抹茶落季
    2021-01-07 12:02

    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

提交回复
热议问题