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 |
arunkhumar
Starting Member
2 Posts |
Posted - 2009-01-07 : 04:39:28
|
im creating a web report from that report if i click an item then it has to open other report for item wise detail.while selecting the item link in first report it shows eror in internet explorer but in the address bar if i include that item in [] then it displays the second report correctly.can anybody help to solve this problem. |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2009-01-07 : 10:32:58
|
seems like your item contains special characters like & which will be interpreted by browser as query string seperator. solution would be to write a custom code which does encode the url to escape these characters using escape() javascript function and call this encode function from your navigation link. |
 |
|
|
|
|