Well it is possible, but this can be easier and cleanly accomplished on the
client side since you are implying that after some event of time period on
the client, it should redirect itself somewhere else. This is not really a
server side concern, but rather a client side issue, hence the solution
should probably be a client side solution.
It isn't pointless. It just doesn't work cleanly in your situation. Here's
one scenario where it comes in. If you want clean up on the server after a
scheduled amount of time, a timer is a very good avenue. Notice, this would
be a server side solution not requiring client-side interference.
The redirection is handled just as if it were server transfer or redirect.

that's the disadvantage of using the inline code method.
--
-----------
Got TidBits?
Get it here:
www.networkip.net/tidbits
"Jim Hammond" <> wrote in message
news:...
> After much effort, it doesn't seem possible to redirect the user to a new
> page after 10 seconds by using a server-side timer. I am now using the
> following meta statement to accomplish the same thing:
>
> <META HTTP-EQUIV="refresh" content="10;URL=Form_Welcome.aspx">
>
> This seems to work fine, but I now have three concerns because I thought
it
> was supposed to be possible to do everything in C#.
> 1. Note that Visual Studio lets the developer drag and drop a timer onto
the
> web form, which now seems like a pointless feature.
> 2. Will server-side code know how to handle the redirection caused by the
> META tag as well as if I had used C#?
> 3. I manually edited the .aspx file, which means that my code is not as
> clean and is harder to maintain.
>
> Jim
>
>