https://asp.niandubay.tk 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.