tags:

views:

25

answers:

1

hi, how can a asp.net button be used to browse and upload items from my computer.use c# language if needed

+2  A: 

You can't use <asp:Button /> for that. You should use the <asp:FileUpload /> control instead.

The myUploadControl.FileBytes then contains the byte array containing the file data.

Joachim VR
thanks..i m new to developement...
koin