%PDF- %PDF-
| Direktori : /proc/self/root/data/old/usr/lib/xsp/test/1.1/webcontrols/ |
| Current File : //proc/self/root/data/old/usr/lib/xsp/test/1.1/webcontrols/web_placeholder.aspx |
<%@ Page language="C#" %>
<%@ Register TagPrefix="mono" TagName="MonoSamplesHeader" src="~/controls/MonoSamplesHeader.ascx" %>
<script runat="server">
void Page_Load(Object sender, EventArgs e)
{
ControlCollection cc = ph.Controls;
CheckBox chk = new CheckBox ();
chk.Text = "Wow?";
cc.Add (chk);
cc.Add (new LiteralControl ("\n<br>\n"));
HyperLink lnk = new HyperLink ();
lnk.NavigateUrl = "http://www.go-mono.com";
lnk.Text = "Mono project Home Page";
lnk.Target="_top";
cc.Add (lnk);
}
</script>
<html>
<head>
<link rel="stylesheet" type="text/css" href="/mono-xsp.css">
<title>PlaceHolder with a CheckBox and a HyperLink added in Page_Load</title>
</head>
<body><mono:MonoSamplesHeader runat="server"/>
<form runat="server">
<asp:PlaceHolder id="ph" runat="server"/>
</form>
</body>
</html>