/usr/share/asp.net-demos/controls/MonoSamplesHeader.ascx 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 | <%@ Control Language="C#" %>
<script runat="server">
void Page_Init (object sender, EventArgs args)
{
Control crumbs;
crumbs = LoadControl ("~/controls/BreadCrumbs_2.0.ascx");
BreadCrumbs.Controls.Clear ();
BreadCrumbs.Controls.Add (crumbs);
}
</script>
<div class="header">
<a style="float:left; padding-right: 20px" class="header" href="http://mono-project.com/"><img src="/monobutton.png" alt="Mono site"></a>
<h1 class="header">Welcome to Mono XSP!</h1>
<div> <h2 class="header">XSP is a simple web server written in C# that can be used to run your ASP.NET
<% Response.Write ("2.0"); %> applications
</h2>
</div>
<asp:PlaceHolder runat="server" id="BreadCrumbs" />
</div>
|