How can I list all printers or detect a Zebra printer on the client side?
I use this for server side:
private IList<string> ToSortedStringArray(PrinterSettings.StringCollection printers)
{
List<string> stringList = new List<string>();
foreach (string printer in printers)
{
stringList.Add(printer);
}
stringList.Sort(StringComparer.Ordinal);
return stringList;
}
How can I do the same thing on the client side? Is it possible without using ActiveX? I prefer javascript.
I found this solution, but it not FREE.
Thank you in advance.
PS: I have a possibility to install a Win Programm on every client machine, when i do that how can i comunicate with my asp.net ?