在SQL Server 2008 R2上,我有一个可以使用以下URL访问的报告:
http://<myServer>/<myPath>:Command=Render&rs:ClearSession=true&rc:Toolbar=true&rc:Zoom=110&rc:Parameters=false&rc:Stylesheet=style.css&NoId=690567938&part=1000000
问题是我每次访问它时都会使用相同的会话,直到它过期,尽管我已经将rs:ClearSession
设置为true。
但是,每次访问时,以下URL都会生成一个新会话(请注意rc:Toolbar
在此处设置为false):
http://<myServer>/<myPath>:Command=Render&rs:ClearSession=true&rc:Toolbar=false&rc:Zoom=110&rc:Parameters=false&rc:Stylesheet=style.css&NoId=690567938&part=1000000
我找不到任何表明rs:Toolbar=true
和rs:ClearSession=true
相互排斥的信息,所以我在这里做错了什么?