Home > Archive > ASP > February 2006 > ASP Page executed twice
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
ASP Page executed twice
|
|
| Elie Grouchko 2006-02-25, 7:55 am |
| Hi
I have an ASP page which is randomly (?) executed twice. I noticed that the
http header is different, as if there are two different requests sent to the
server. Header 2 below is the one that randomly occur.
Although the 2 headers are different I don't understand why
Help will be greatly appreciated
Thanks
Elie Grouchko
Header 1
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg,
application/x-shockwave-flash, application/vnd.ms-excel,
application/vnd.ms-powerpoint, application/msword, */* Accept-Language:
en-nz Connection: Keep-Alive Host: localhost Referer:
http://localhost/mysite/page.asp?su...d=2&forumpage=3 User-Agent:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cookie: userloginname=; ASPSESSIONIDCATRATAC=HGBDLENCAPADIEKHFAC
KMMFK
Content-Length: 230 Content-Type: application/x-www-form-urlencoded
Accept-Encoding: gzip, deflate Cache-Control: no-cache
Header 2
Accept: */* Accept-Language: en-nz Connection: Keep-Alive Host: localhost
Referer: http://localhost/mysite/page.asp?su...d=2&forumpage=4
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR
1.1.4322) Cookie: userloginname=;
ASPSESSIONIDCATRATAC=HGBDLENCAPADIEKHFAC
KMMFK Accept-Encoding: gzip, deflate
| |
| Elie Grouchko 2006-02-26, 7:55 am |
| Hi again
I resolved this issue, and wanted to share the solution as it may be of some
help to others.
On the specific page I was having a problem I am creating HTML code on the
client side using the JavaScript 'document.write' method. One of the tags I
am creating is an image <img src="" ... />. My plan was to populate the
image at a later point so I left the 'src' property empty, which was a
mistake... The img.src property is required, so the browser assumes that an
empty img.src property means the root URL, and was sending another GET HTTP
request and reloading the entire home-page.
Moral: don't leave the img.src property empty...
:-)
Elie
"Elie Grouchko" <elie@ortel.co.nz> wrote in message
news:Os8ijcfOGHA.3984@TK2MSFTNGP14.phx.gbl...
> Hi
>
> I have an ASP page which is randomly (?) executed twice. I noticed that
> the http header is different, as if there are two different requests sent
> to the server. Header 2 below is the one that randomly occur.
>
> Although the 2 headers are different I don't understand why
>
> Help will be greatly appreciated
>
> Thanks
>
> Elie Grouchko
>
>
> Header 1
>
> Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg,
> application/x-shockwave-flash, application/vnd.ms-excel,
> application/vnd.ms-powerpoint, application/msword, */* Accept-Language:
> en-nz Connection: Keep-Alive Host: localhost Referer:
> http://localhost/mysite/page.asp?su...d=2&forumpage=3 User-Agent:
> Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
> Cookie: userloginname=; ASPSESSIONIDCATRATAC=HGBDLENCAPADIEKHFAC
KMMFK
> Content-Length: 230 Content-Type: application/x-www-form-urlencoded
> Accept-Encoding: gzip, deflate Cache-Control: no-cache
>
> Header 2
>
> Accept: */* Accept-Language: en-nz Connection: Keep-Alive Host: localhost
> Referer: http://localhost/mysite/page.asp?su...d=2&forumpage=4
> User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET
> CLR 1.1.4322) Cookie: userloginname=;
> ASPSESSIONIDCATRATAC=HGBDLENCAPADIEKHFAC
KMMFK Accept-Encoding: gzip,
> deflate
>
|
|
|
|
|