mljonzs
Posts: 124
|
| Posted: 08/07/2007, 3:09 PM |
|
I have a strange thing happening in my application that I can't figure out. When a user clicks on a sorter to resort a grid, the first time it works just fine. Now they click again to sort in reverse (or click to sort by a different column) and no records come up. After much analysis and confusion, I discover that the second and consecutive clicks on any sorter messes up the query string parameters so no records get found as the recordset uses the url parameters to find the data.
For example
the query string looks like this initially: Quote :https://testapps/Notifications/Notifications.asp?un=mjones&srcA=TH
after clicking sorter it looks like : Quote :https://testapps/Notifications/Notifications.asp?un=mjones&srcA=TH&AlertsOrder=Sorter%5FStartDate&AlertsDir=ASC
so far so good. Now, hit a sorter again and the url becomes: Quote :https://testapps/Notifications/Notifications.asp?un=mjonessrcA=TH&AlertsOrder=Sorter%5FDueDate&AlertsDir=ASC
and all records are lost because the & that should be between mjones and srcA (mjones&srcA) is gone.
I cannot figure out why this happens??
Anyone know what is going on?? I am using newest version of CodeCharge (3.2.0.1)
Thanks!
mlj
_________________
What does not begin WITH God, will end in failure!
|
 |
 |
TheunisP
Posts: 342
|
| Posted: 08/07/2007, 3:38 PM |
|
it is a bug in 3.2 - there is a patch - just mail support
ps. Had the same problem, I don't know why they haven't released a general bug fix
|
 |
 |
TheunisP
Posts: 342
|
| Posted: 08/07/2007, 3:39 PM |
|
ps. I think I still got the zip they send me
|
 |
 |
mljonzs
Posts: 124
|
| Posted: 08/08/2007, 10:02 AM |
|
Thanks! I'll try to contact support and see what they say.
8/10/07 - I did receive a patch from support that worked. This issue is caused by a bug in the Common.asp stuff....
_________________
What does not begin WITH God, will end in failure!
|
 |
 |
|