Jump to content

niandu

Members
  • Posts

    15
  • Joined

  • Last visited

Posts posted by niandu

  1. I have tried to create several project types from visual studio and publish it using ftp. None has worked for me. Using both 3.5 and 4.6 .NET Framework. Right now I have left a Default.aspx file with very simple example code and it does not work either.
    I do not know much about mono, I do not know if there is something special to make it work.
    The test file that you had placed to test that it worked, I deleted it, I would like if you can put it back to verify the differences.
    The code in the Default.aspx file is this:
    <!-- directives -->
    <% @Page Language="C#" %>
    
    <!-- code section -->
    <script runat="server">
    
       private void convertoupper(object sender, EventArgs e)
       {
          string str = mytext.Value;
          changed_text.InnerHtml = str.ToUpper();
       }
    </script>
    
    <!-- Layout -->
    <html>
       <head> 
          <title> Change to Upper Case </title> 
       </head>
       
       <body>
          <h3> Conversion to Upper Case </h3>
          
          <form runat="server">
             <input runat="server" id="mytext" type="text" />
             <input runat="server" id="button1" type="submit" value="Enter..." OnServerClick="convertoupper"/>
             
             <hr />
             <h3> Results: </h3>
             <span runat="server" id="changed_text" />
          </form>
          
       </body>
       
    </html>
    

    Any idea? Thanks.

  2.  

    You said you wanted it on juanch0.heliohost.org

    There you go https://niandubay.tk/test.aspx

    I wanted asp.net running on the asp.niandubay.tk subdomain, sorry, I am a bit slow on this and I thought if you enabled .net on niandubay.tk, it would also be available for subdomains.
    If it is not too much trouble I would love to have asp.net enabled for subdomain asp.niandubay.tk, that's where I wanted to start testing things.
    My apologies for the misunderstanding and thanks for the quick response.

     

×
×
  • Create New...