There are other ways to navigate to other pages, including hyperlinks,
client side javascript and server.transfer.

Server.Transfer("NextPage.aspx")

--
I hope this helps,
Steve C. Orr, MCSD
[url]http://Steve.Orr.net[/url]
Developer for Hire


"Shahar" <shahar@log-on.com> wrote in message
news:e803974e.0308120917.6dfbe1df@posting.google.c om...
> Hi
>
> Is there any other way to navigate from page to page in ASP.NET
> except:
>
> private void MyBtn_Click(object sender, System.EventArgs e)
> {
> Response.Redirect("NextPage.aspx");
> }
>
> Is there any other way, or I have to declare a form that is not
> running in the server and the action will be "NextPage.aspx" ?
>
> Thanx