/usr/share/asp.net-demos/1.1/asp.net/codebehind1.aspx is in asp.net-examples 4.2-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | <%@ Page language="c#" Inherits="MonoTest.Test" AutoEventWireup="false" %>
<%@ Register TagPrefix="mono" TagName="MonoSamplesHeader" src="~/controls/MonoSamplesHeader.ascx" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>Test</title>
<meta name="GENERATOR" Content="Microsoft Visual Studio 7.0">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
<link rel="stylesheet" type="text/css" href="/mono-xsp.css">
</HEAD>
<body><mono:MonoSamplesHeader runat="server"/>
<form id="Test" method="post" runat="server">
<P>
<asp:Label id="Label1" runat="server">Text will go here.</asp:Label></P>
<P>
<asp:TextBox id="TextBox1" runat="server"></asp:TextBox></P>
<P>
<asp:Button id="SubmitButton" runat="server" Text="Submit"></asp:Button></P>
</form>
</body>
</HTML>
|