Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to get a specific graph ?

Status
Not open for further replies.

samdelhi

MIS
Jan 3, 2001
1
US
hi,

i need to get a specific graph onto a web page from Microstrategy7.

it used to be so easy in micro 6, but it seems that i need to write ASP to get a single graph out and display it without the microstrategy interface.

i have tried
MSIGraphLoader.asp?MessageID=xxxxxxxxxxx

but no luck.


can anyone help mw with that!

thanks

sam
 
Hi Sam, try using the following asp file to call MSIGraphLoader.asp


----------------------
<%
'Standard Headers
OPTION EXPLICIT
response.buffer = true
Response.CacheControl = &quot;no-cache&quot;
Response.AddHeader &quot;Pragma&quot;, &quot;no-cache&quot;
Response.Expires = -1

dim messageid ' message id
dim sessionid ' session id
dim folderid ' folder id

'get folderid, messageid and sessionid from URL
folderid = request.querystring(&quot;folderid&quot;)
messageid = request.querystring(&quot;messageid&quot;)
sessionid = request.querystring(&quot;sessionid&quot;)

'Call to msigraphloader sending messageid for graph to be displayed
response.write &quot;<html><body><div align=center><img src=msigraphloader.asp?messageid=&quot; & _
messageid & &quot;></div>&quot;

%>

--------------------------
Nick


ps. please feel free to encourage more posts to this forum. The more we can get together as users of MicroStrategy 7, the better:)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top