I have a shopping basket system that's based on one written many a year ago in Perl. The initial link is something like:
Basket.aspx?addtobasket=500
where 500 refers to the product. The basket has up and down buttons, which call, for example
Basket.aspx?incqty=500
On VS2005 and whatever its test webserver is, this all works, and when I click on an up button it reloads the page increasing the quantity, and I notice that the URL in the browser address bar changes to the above.
However uploaded to where it needs to go (a Windows 2003 IIS6 server), the up and down buttons don't work. If I click the down arrow, it reloads the page but the original "addtobasket" URL remains in the browser address bar and it carries out the addtobasket function rather than the increase/decrease.
Can anyone shed any light on this? Maybe it's not the best approach, and I'm still feeling my way, but why does it not work consistently?
Basket.aspx?addtobasket=500
where 500 refers to the product. The basket has up and down buttons, which call, for example
Basket.aspx?incqty=500
On VS2005 and whatever its test webserver is, this all works, and when I click on an up button it reloads the page increasing the quantity, and I notice that the URL in the browser address bar changes to the above.
However uploaded to where it needs to go (a Windows 2003 IIS6 server), the up and down buttons don't work. If I click the down arrow, it reloads the page but the original "addtobasket" URL remains in the browser address bar and it carries out the addtobasket function rather than the increase/decrease.
Can anyone shed any light on this? Maybe it's not the best approach, and I'm still feeling my way, but why does it not work consistently?
Comment