How to I redirect to another page *after* printing document?

前端 未结 5 1635
悲&欢浪女
悲&欢浪女 2020-12-17 06:31

I have an event called SubmitResponse().

A user is presented with a list of questions and possible responses. After completing the responses, the user

5条回答
  •  情话喂你
    2020-12-17 07:22

    You can do the printing and redirect all via javascript. Here is an example that should work:

    function doPrint() {
        window.print();            
        document.location.href = "Somewhere.aspx"; 
    }
    

    Link it to a Button:

    
    

提交回复
热议问题