I have a url (HTTP) that gets redirected.
This is the end of the url with paramters:
/c.html?ufl=c&rtr=on&s=x9w5pl,33gz,2cw,75vq,lelf,gwtv,jxou&RESNET_CODE=FIE&OFFERCODE=H38FR10
When I use chrome to GET this url, the original url gets redirected to a url (HTTPS) that ends like this:
/cgi-bin/LANSAWEB?procfun+rn+Resnet+FIE+funcparms+UP(A2560):;H38FR10;?/#
However, when I use IE (I'm testing with version 8)), it somehow drops the last parameter and the url (HTTPS) looks like this:
/cgi-bin/LANSAWEB?procfun+rn+Resnet+FIE+funcparms+UP(A2560):
I have used fiddler to determine that both Chrome and IE are posting the same Get request (as shown above):
/c.html?ufl=c&rtr=on&s=x9w5pl,33gz,2cw,75vq,lelf,gwtv,jxou&RESNET_CODE=FIE&OFFERCODE=H38FR10
Why in the world is the last parameter ;H38FR10;?/#
being truncated when I use IE???
I would add that if I take the url that chrome gets redirected to, and put it in IE, it works!