TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
goutamendu hait
NA
1
1.4k
I am needed to print an aspx page with control values
Jun 27 2012 9:49 AM
i am needed to print an aspx page with control values like: when an user inputs all the values in aspx page and is printing the page , all the contents of the page gets printed but without those control values(like: textbox,checkbox, dropdown that an user selcts etc.) . ryt now i am using javascript function for printing the page.
my printing code is:
var
printContent = document.getElementById(
'<%=pblFormw8.ClientID %>'
);
var
windowUrl =
'about:blank'
;
var
uniqueName =
new
Date();
var
windowName =
'Print'
+ uniqueName.getTime();
var
printWindow = window.open(windowUrl, windowName,
'left=50000,top=50000,width=0,height=0'
);
printWindow.document.write(printContent.innerHTML);
printWindow.document.close();
printWindow.focus();
printWindow.print();
printWindow.close();
PLZ HELP!!!!!!!!!!!!!!!!
Reply
Answers (
0
)
Nested Master Page in Web Site
Navigation Control In Asp.net