URL parameters disappear

  • Thread starter Thread starter Lee
  • Start date Start date
L

Lee

Hi all

This is very strange. I've taken maintenance work on a site pre-
written in c#. When I try to put in links which have GET parameters in
the URL (i.e. http://www.mysite.com?edit=1), the parameters are
stripped and the application receives only the bare URL (http://
www.mysite.com). Sometimes, I would see two post backs - first with
good URL, second only with the Raw URL.

The site is using FormsAuthentication.

Any ideas? is there a place where I can detect the source of the raw
URL?

thanks so much for any ideas!
Lee
 
Lee said:
Hi all

This is very strange. I've taken maintenance work on a site pre-
written in c#. When I try to put in links which have GET parameters in
the URL (i.e. http://www.mysite.com?edit=1), the parameters are
stripped and the application receives only the bare URL (http://
www.mysite.com). Sometimes, I would see two post backs - first with
good URL, second only with the Raw URL.

The site is using FormsAuthentication.

Any ideas? is there a place where I can detect the source of the raw
URL?

thanks so much for any ideas!
Lee


The common reason is you have an empty image on your page...
like <img src=""...>

PS: check if second request is not PostBack and is GET

George.
 
Back
Top