Click here to Skip to main content
15,884,298 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can we pass byte array data from Javascript to asp.net server side
Posted
Comments
bbirajdar 25-Feb-13 5:11am    
Assign it to a asp.net hidden field and access it from server side... Or use ajax call to post the value to the server
Niral Soni 25-Feb-13 9:25am    
Won't it be similar to the HTML file upload component ??

As already suggested by aspnet_regiis, you have multiple ways to do it. Standard or most commonly used way is via traditional Ajax, i.e. XMLHttpRequest.

Have a quick read on this article: Sending and Receiving Binary Data[^]
 
Share this answer
 
You can base64 encode the byte array in JavaScript to a base64 string and then pass the base64 string to asp.net. In asp.net you can decode the base64 string to a byte array.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900