Hauk933 Posted January 18, 2011 Posted January 18, 2011 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 Quote
Wizard Posted January 18, 2011 Posted January 18, 2011 I think ASP might be disabled right now. Quote
jje Posted January 18, 2011 Posted January 18, 2011 Yes. As Wizard said. ASP.NET has been disabled as it was the main cause if downtime. Maybe in the future. Please read the Commonly Asked Questions (CAQ) guide before posting. Sorry for any inconvenience. Quote
Guest Geoff Posted January 19, 2011 Posted January 19, 2011 I think ASP might be disabled right now. ASP and ASP.NET are two very different technologies with similar names. Heliohost does not, and will never support ASP. However, we are planning to support ASP.NET in the future. Quote
Wizard Posted January 19, 2011 Posted January 19, 2011 I think ASP might be disabled right now. ASP and ASP.NET are two very different technologies with similar names. Heliohost does not, and will never support ASP. However, we are planning to support ASP.NET in the future. You're right, of course. I did mean ASP.NET, but thanks for the clarification. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.