Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How I can launch my Qlikview report from the button on my asp.net application web page?

How I can launch my Qlikview report from the button on my asp.net application web page?

1 Solution

Accepted Solutions
gonzaloruizgonz
Partner - Creator
Partner - Creator

HI,

YOu can probably use this:

<!DOCTYPE html>

<html>

<body>

<%

response.write("Qlikview Report")

%>

<button onclick="window.open('qvp://servername/qvwname')">

    Launch notepad

</button>

</body>

</html>

Or just the http link to the ajax application:

http://<servername>/QvAJAXZfc/opendoc.htm?document=<qlikviewfile>.qvw

BR//Gonza

View solution in original post

2 Replies
gonzaloruizgonz
Partner - Creator
Partner - Creator

HI,

YOu can probably use this:

<!DOCTYPE html>

<html>

<body>

<%

response.write("Qlikview Report")

%>

<button onclick="window.open('qvp://servername/qvwname')">

    Launch notepad

</button>

</body>

</html>

Or just the http link to the ajax application:

http://<servername>/QvAJAXZfc/opendoc.htm?document=<qlikviewfile>.qvw

BR//Gonza

Not applicable
Author

Thanks.it works for me.