I have a Web application programmed in C#.
There are several printers and I want to choose any of them and execute the action, I would like some kind of Form to load all printers.
I found this for Win forms:
this.printDialog1.Document = this.printDocument1;
DialogResult dr = this.printDialog1.ShowDialog();
But I couldn t find something for ASP.NET.
Thanks for any help.