So far I found something related to what I am looking for, but I'm not sure if this is what I need: link
How do I convert the file to byte in js and send it to webservices to upload to server.
Example:
JS:
<script>
webService.UploadFile(Myfilebytes,suc,fail);
</script>
C#:
[Web Method]
public string UploadFile(byte[] Myfilebytes)
{
//UPloading script
return "OK";
}