If I have a printer hooked directly to a pc (a kiosk with a printer), how would I go about creating the ability for a web page (.net web app) to print a jpg to the kiosks pr
The other comments cover a scenario where you want to print on the computer of the web browser.
However, if you want to print to a printer connected to the web server (ie, the machine running the web application), you can use regular C# printing with the following twist: http://support.microsoft.com/kb/184291/
In my context, my kiosk runs both the web server and the web browser, so that solved my problem.