How do I GO TO a new web site?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Ugh, this is emberassing. I've written several C# applications. I created one
MAIN application which is nothing more than a page with some buttons on them
which my INTENTION is to have them link to the other web pages.

However, I've completely forgotten how make those buttons force explorer to
go to the page I want. In the mean time, I created some HTML links.

What do I put in the C# "OnClick" event for those form buttons, to make it
go to another URL?


protected void Button1_Click(object sender, EventArgs e)
{
// What do I put here to make it go to another web page???
}



Thanks!

Todd
 
Todd Jaspers said:
Ugh, this is emberassing. I've written several C# applications. I created
one
MAIN application which is nothing more than a page with some buttons on
them
which my INTENTION is to have them link to the other web pages.

However, I've completely forgotten how make those buttons force explorer
to
go to the page I want. In the mean time, I created some HTML links.

What do I put in the C# "OnClick" event for those form buttons, to make it
go to another URL?


protected void Button1_Click(object sender, EventArgs e)
{
// What do I put here to make it go to another web page???
}



Thanks!

Todd

All the above makes it very hard to figure out whether your application is
ASP.NET or Windows Forms, which will determine the answer.
 
Hi, it's ASP.Net


Thanks,

Todd

Ben Voigt said:
All the above makes it very hard to figure out whether your application is
ASP.NET or Windows Forms, which will determine the answer.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top