I need to return textual data from server along with binary data(file) as JSon object which later will be used with jQuery(ASP.NET app at server side). I can encode file with Base64 and put it inside JSon object, as I know there is no way to access binary data using jQuery from JSon object at client side. So how to call server using jQuery, read textual JSon data and somehow send file at the same request.
Any suggestions?