/usr/share/asp.net-demos/1.1/html/htmlinputtext.aspx is in asp.net-examples 4.2-2.1.
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 | <%@ Page Language="C#" %>
<%@ Register TagPrefix="mono" TagName="MonoSamplesHeader" src="~/controls/MonoSamplesHeader.ascx" %>
<html>
<head>
<title>HtmlInputText: text and password</title>
<link rel="stylesheet" type="text/css" href="/mono-xsp.css">
</head>
<body><mono:MonoSamplesHeader runat="server"/>
<form method=post runat="server">
<input type="text" id="asText" maxlength=40 size=40 value="Your name goes here" runat="server"/>
<br>
<input type="password" id="asPassword" maxlength=8 size=8 value="Your name goes here" runat="server"/>
</form>
</body>
</html>
|