Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6944165
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T13:15:03+00:00 2026-05-27T13:15:03+00:00

I am trying to print an ASP.NET Image using the example here . When

  • 0

I am trying to print an ASP.NET Image using the example here.

When I use the above example for a div, it works, but I can’t adapt it to print anything else. How can I get it to print an Image? Do I wrap the Image in a div and change the “.text()” part in the script to something else?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T13:15:04+00:00Added an answer on May 27, 2026 at 1:15 pm

    Because you’re passing a wrong parameter to the printing function. Printing something in JavaScript is as easy as calling window.print(); method. To test it, simply use developer tools of your browser and write into its console:

    window.print();
    

    Now, when you want to print something specific, you have two ways:

    1. Create a special stylesheet for printing in the same page, which hides other elements and only shows your specified region.
    2. Or, open a new window, copy what you want there, then print it.

    Now, what you can do is to write your own function:

    function printImage(image)
    {
            var printWindow = window.open('', 'Print Window','height=400,width=600');
            printWindow.document.write('<html><head><title>Print Window</title>');
            printWindow.document.write('</head><body ><img src=\'');
            printWindow.document.write(image.src);
            printWindow.document.write('\' /></body></html>');
            printWindow.document.close();
            printWindow.print();
    }
    
    var image = document.getElementById('image');
    printImage(image);
    

    and you can also see this function in action here.

    Just let the browser open popup, and also note that I only pass the src value of the image element to the new window.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm building a calendar in ASP.NET using Jquery, And I'm trying to implement Print.
I'm having trouble trying to print a document from a ASP.NET MVC3 application using
I'm trying to change an image's imageurl on an aspx asp.net c# page based
I'm new to ASP.NET MVC. I'm currently using ASP.NET MVC 3. I'm trying to
I'm trying to get a line of code in my ASP.net application (using Visual
Im trying to implement an asp.net textbox using the jQuery UI Autocomplete widget http://jqueryui.com/demos/autocomplete/#remote
I am trying to use ASP.NET Server Controls (ASP.TextBox etc) with MVC (to take
I'm trying to use ASP.NET's Repeater objects to loop over properties of an object.
I'm trying to give users an ability to print asp.net gridview/listview report. Could anyone
I am trying to build an iPhone web application using ASP.NET. The page is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.