You have an ASP.Net application. This means that the application runs on a
web server, and sends and receives HTTP messages from the client.
Specifically, it sends files to the client, and can receive Requests from
the client, which may include files, assuming that the HTML documents sent
to the client include File upload form fields.
Now, for a client to scan an image, the client machine must have scanner
hardware connected to it. The scanner hardware does the scanning, and the
scanner software does the image-making. Therefore, assuming that the user's
machine has a scanner attached to it, the user scans some image, and saves
it as a file to their machine. The user can then upload the file as he/she
would upload any file from their machine via a web page.

Signature
HTH,
Kevin Spencer
Microsoft MVP
.Net Developer
You can lead a fish to a bicycle,
but it takes a very long time,
and the bicycle has to *want* to change.
> my asp.net project has a requirement to enable the user to scan
> images.How can i do this?
There's no generic method for web browser applications to access scanners,
and you'll have to find way to talk with Twain or WIA on the client machine
to do that.
You may want to use a signed ActiveX client/applet like this
http://www.dynamsoft.com/WebTWAIN_Overview.html to do so...
(Seems all search engine got directed to this one...)
"sonu" <snehal_wale@yahoo.com>
???????:1137572568.634257.35370@g14g2000cwa.googlegroups.com...
> my asp.net project has a requirement to enable the user to scan
> images.How can i do this?