Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How I can launch my Qlikview report from the button on my asp.net application web page?
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
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
Thanks.it works for me.