> Most likely you get 2 requests for that page from browser thus you are
> getting your page instantiated twice.
[quoted text clipped - 3 lines]
> (some versions) to make a second GET call to your page.
> And things like that.
Thanks very much for that hint! Is it possible to get a log file for
the incomming request to the asp.net develoment server? After I read
your post, I checked the HttpMethod of the two calls to the page. The
first one is POST, the second one is GET. That matches your posting,
but then I should see the result of the POST in my browser. Or am I
wrong? And enabling asp.net trace output in my page, I can see that
the displayed page is the result of a GET request!? Any further hint?
regards,
Achim
Achim Domma - 20 Dec 2007 10:39 GMT
Sorry, for the confusion. There was a redirect I didn't know about.
And a redirect - of course - causes a second GET request.
Achim