Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
jpopcenter
Starting Member
2 Posts |
Posted - 2005-04-19 : 09:17:30
|
Hello,I'm trying to retrive report's informations accessing via URL.I know i can retrive the HTML code of the report inside the BODY tag by passing an argument via the URL but i can't find this argument.How can i do it ?I've got something like :http://localhost/reportserver/?%2fRSDemo%2fTest&rs:Command=Render&rc:toolbar=false¶meter=fooI obtain an HTML page like----<html> <head> .... </head><body> <table> ... </table></body></html>---I want :---- <table> ... </table>---Thanks |
|
AjarnMark
SQL Slashing Gunting Master
3246 Posts |
Posted - 2005-04-19 : 14:20:17
|
You need to use the rc:HTMLFragment=True parameter.-----------------------------------------------------------------------------------------------Emerald City Domains: Great deals on Domain Registration, Web Hosting, Custom Email, and more! |
 |
|
jpopcenter
Starting Member
2 Posts |
Posted - 2005-04-20 : 04:37:13
|
Thak you very much !!! |
 |
|
|
|
|