dynamics crm 2011 - Pass parameters using POST to HTML page from SSRS -


i have html page stored web resource in crm 2013. have report need pass records guids html page. able pass record guids(comma separated list) successfully. however, when url length exceeds 2000 characters, getting "404 resource not found" error. due url length limit. there way can pass record guids using post method html page ssrs work number of records?

the simplest approach seems storing record guids variable on ssrs report via

=code.writehtml("<script>window.recordguids=[" & recordids & "];</script>") 

and in web resource use

var ids = window.opener.recordguids; 

but work in browser , report have viewed crm.

otherwise, post external service, launch web page , allow getting ids through caching mechanism mixed jsonp call of sort.


Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

jquery - javascript onscroll fade same class but with different div -