Print XML suggestion

  • Thread starter Thread starter CSharper
  • Start date Start date
C

CSharper

What is the best way to print set of xml files with associated XSLT to
printer? I would like to know if it is possible through asp.net (or
silverlight)?
Thanks,
 
CSharper said:
What is the best way to print set of xml files with associated XSLT to
printer? I would like to know if it is possible through asp.net (or
silverlight)?

If you want to know about ASP.NET or Silverlight, you need to post to a
forum where questions about those technologies is on-topic.

As for the more general question, you can easily transform XML using
XSLT in .NET, but there remains the question of how to interpret the
output for that. You can easily print out the literal output but, for
example, that might just be HTML that really should be rendered by some
browser component before printing.

In other words, your problem statement is incomplete. You'll need to
refine your specification before you can create a solution.

Pete
 
If you want to know about ASP.NET or Silverlight, you need to post to a
forum where questions about those technologies is on-topic.

As for the more general question, you can easily transform XML using
XSLT in .NET, but there remains the question of how to interpret the
output for that.  You can easily print out the literal output but, for
example, that might just be HTML that really should be rendered by some
browser component before printing.

In other words, your problem statement is incomplete.  You'll need to
refine your specification before you can create a solution.

Pete

Thanks Pete. I will try to post it in ASP.Net and take your advice and
refine the statement more.
 
Back
Top