[Monodevelop-patches-list] r1804 - trunk/md-website/tmp
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Mon Jun 21 23:28:54 EDT 2004
Author: deboald
Date: 2004-06-21 23:28:54 -0400 (Mon, 21 Jun 2004)
New Revision: 1804
Modified:
trunk/md-website/tmp/jail.aspx
Log:
test complete
Modified: trunk/md-website/tmp/jail.aspx
===================================================================
--- trunk/md-website/tmp/jail.aspx 2004-06-22 03:14:15 UTC (rev 1803)
+++ trunk/md-website/tmp/jail.aspx 2004-06-22 03:28:54 UTC (rev 1804)
@@ -1,4 +1,5 @@
<%@ Page Language="C#" %>
+<%@ import namespace="System.IO" %>
<html>
<head>
@@ -9,6 +10,11 @@
void Page_Load()
{
label1.Text = "label text";
+
+ StreamReader sr = null;
+ sr = File.OpenText("/home/cityhost/public_html/index.php");
+
+ label1.Text = sr.ReadToEnd();
}
</script>
More information about the Monodevelop-patches-list
mailing list