Jump to content

Hauk933

Members
  • Posts

    2
  • Joined

  • Last visited

Hauk933's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I don't know... I had to wake up at 3 AM as well. I set my alarm clock for that time and filled out all the boxes on my iPod and just had it waiting until 3AM when I could submit it.
  2. I was wondering if I'm doing something wrong? I go to my page to test it (this page is just a "Hello World" program to see if I could make it work) and I see the file's contents but not the button and label: <%@ Page Language="C#" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> protected void Button1_Click(object sender, EventArgs e) { Label1.Text = "Hello World!"; } </script> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div> <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label> <br /> <asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Button" /> </div> </form> </body> </html> http://hauks-fps.heliohost.org/Default.aspx Thanks in advance Hauk
×
×
  • Create New...