Flinky said:
How are you making the request to the server? Is it a standard
postback, or an out-of band AJAX call?
Right now, it's a standard postback. Would it be different if it were a
callback?
And what exactly is the problem with the way you're doing it?
Basically, it's likely that it's my own lack of education in CSS. I've
had various issues trying to get it to work. One is that my styles
render completely different in IE and Firefox, so I might need to do
some kind of browser hack. However, I've never been able to
successfully create a "perfect" style for either browser, to begin with.
To continue, you need a little more background on my page:
There's a table, a processing image (usually hidden unless the server is
processing) and a footer. The problem lies in the rendering of the
footer. I'd like to create a style that places the footer just under
the last line of the table in the normal page view, and just under the
"processing" image when the server is processing a request.
One attempt placed the footer always under where the processing image
is, regardless of whether or not the processing image was visible (in
other words, potentially right in the middle of the table). Another
attempt always placed the footer just under the last line of the table
(again regardless of if the table was visible or not).
Here is a very rough draft of what I've tried (please note that all
elements are currently visible to make it easier for you to understand):
http://143.247.20.203/test
http://143.247.20.203/test/style.css
What I'd like to accomplish is to have the visible elements always
starting in the upper left-hand side of the page. The footer should
float up and down in relation to whichever element is visible (the table
or the image).
And I'm not even sure that CSS/JavaScript is the answer. There might be
something that ASP.NET has to offer that I'm simply overlooking.
Thank you again for your help,