A response.write will now, due to the paradigm shift between Classic ASP and
ASP.Net always write at the top of the page.
To be able to put text in certain, exact places, create a lable where you
want the text - then, instead of doing a response.write, use:
Label1.text=StartingTaskA
label1.text+=StartingTaskB - - of course, you'll need to add "<br />" if you
want line feeds.......
--
David Wier
MVP/ASPInsider
http://aspnet101.com
http://aspexpress.com
"D" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi
>
> I'm obviously still learning here but what I've created is a page with a
> calendar and button. When I click the button I do a number of tasks and
> would like to output the progress in messages such as
>
> Starting TaskA
> Processing TaskA
> Completed TaskA
>
> Starting TaskB
> Processing TaskB
> Processing Failed for TaskB
>
> This page is a child page of a master page that is actually a child of
> another master page, creating a look like the MSDN site with a tree
control
> on the left side and the logo and other info across the top (the highest
> master page in this set up) and content in the center.
>
> When I do a response.write the text comes out across the top of the
screen,
> in the master page. So I'm trying to think of how I could display the text
> below the button on the content page. I've looked at various progress bar
> setups but most of them are using a single line and the next message
erases
> the previous message. I'm thinking more like a list box that gets filled
> with messages but I cannot think of how to accomplish this.
>
> Thanks alot for any ideas you might have.
>
> Best Regards.
>
>
>
>
>