Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Web/System.Web.UI.WebControls/Literal.cs')
-rw-r--r--mcs/class/System.Web/System.Web.UI.WebControls/Literal.cs62
1 files changed, 0 insertions, 62 deletions
diff --git a/mcs/class/System.Web/System.Web.UI.WebControls/Literal.cs b/mcs/class/System.Web/System.Web.UI.WebControls/Literal.cs
deleted file mode 100644
index a2d4db5cc9e..00000000000
--- a/mcs/class/System.Web/System.Web.UI.WebControls/Literal.cs
+++ /dev/null
@@ -1,62 +0,0 @@
-/**
- * Namespace: System.Web.UI.WebControls
- * Class: Literal
- *
- * Author: Gaurav Vaish
- * Maintainer: gvaish@iitk.ac.in
- * Contact: <my_scripts2001@yahoo.com>, <gvaish@iitk.ac.in>
- * Implementation: yes
- * Status: 100%
- *
- * (C) Gaurav Vaish (2001)
- */
-
-using System;
-using System.Web;
-using System.Web.UI;
-using System.ComponentModel;
-
-namespace System.Web.UI.WebControls
-{
- [DefaultProperty("Text")]
- [ControlBuilder(typeof(LiteralControlBuilder))]
- //[DataBindingHandler("??")]
- public class Literal : Control
- {
- public Literal () : base ()
- {
- }
-
- public string Text
- {
- get {
- object o = ViewState ["Text"];
- return (o == null) ? String.Empty : (string) o;
- }
-
- set { ViewState ["Text"] = value; }
- }
-
- protected override ControlCollection CreateControlCollection ()
- {
- return new EmptyControlCollection (this);
- }
-
- protected override void AddParsedSubObject (object obj)
- {
- if (!(obj is LiteralControl))
- throw new HttpException (HttpRuntime.FormatResourceString (
- "Cannot_Have_Children_Of_Type", "Literal",
- obj.GetType ().Name.ToString ()));
-
- Text = ((LiteralControl) obj).Text;
- }
-
- protected override void Render (HtmlTextWriter writer)
- {
- if (Text.Length > 0)
- writer.Write (Text);
- }
- }
-}
-