button click not working

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

Guest

Hi there,
I started a new website in asp.net.. made a page with some buttons and that
on it.. copied it several times on different pages, so i get the save buttons
in the same position on each page.. now i want to click on the buttons and
open the different pages...
Response.redirect("page.aspx")
but it's not working... i've put labels and new buttons, and just wrote...
label1.text = "hello"
but that doesn't even work...
what's going on with this????
 
I had the same problem. First try to install :NET Framweork 1.1 or 2.0beta.
If it doesn't work (like in my case) installing VS :NET 2003 will (I first
had 2002 and that kind of problem so I installed 2003). And you'll have to
shutdown firewall (like Zone Alarm or something).
P.S. I am beginner at .NET programming so could you tell me how to make
code to click on the button and
open the different page...Thx
 
I have vs.net installed as well as .net framework... all my other websites
work fine, it's just this new one i'm doing... nothing is working

to open a new page you write: Response.Redirect("page.aspx")
 
Back
Top