Click here to Skip to main content
15,897,704 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a fileupload control after choos a image

i want to display that image in dev express control which name is "binaryImage"

how can i display that over there?
Posted
Comments
[no name] 29-Aug-12 9:13am    
You should be asking DevExpress how to use their controls. Or read the documentation.

1 solution

The name "binaryImage" suggests a control that takes a byte[] or Stream as a datasource. FileUploadControls in ASP.net expose the binary content of uploaded files using either FileBytes or FileContent properties:

http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.fileupload_properties[^]
 
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