Jump to content

Recommended Posts

Posted

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

Posted

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.

Posted
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.

Posted
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.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...