R
Rob
I have a webform that uses the TabStrip and MultiPage webcontrols. I also
have a Print button on the form to print all of the information of the
webform (all tabs):
<input type="button" value="Print" onclick="window.print()">
However, this only prints the first tab or PageView. To fix this problem,
I have added an @media rule to my stylesheet:
@media print
{
.PageView
{
display: block;
}
}
However, this still does not work. Is there a way to print all tabs of a
webform that uses the TabStrip and MultiPage webcontrols?
Thank you in advance for any help.
have a Print button on the form to print all of the information of the
webform (all tabs):
<input type="button" value="Print" onclick="window.print()">
However, this only prints the first tab or PageView. To fix this problem,
I have added an @media rule to my stylesheet:
@media print
{
.PageView
{
display: block;
}
}
However, this still does not work. Is there a way to print all tabs of a
webform that uses the TabStrip and MultiPage webcontrols?
Thank you in advance for any help.