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

HtmlContainerControl.cs « System.Web.UI.HtmlControls « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 970a48aced93811b929d45b618619142efdc4992 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
//
// System.Web.UI.HtmlControls.HtmlContainerControl.cs
//
// Author
//   Bob Smith <bob@thestuff.net>
//
// (C) Bob Smith
//

using System;
using System.Web;
using System.Web.UI;

//LAMESPEC: The dox talk about HttpException but are very ambigious.
//TODO: Check to see if Render really is overridden instead of a LiteralControl being added. It apears that this is the
//case due to testing. Anything inside the block is overwritten by the content of this control, so it doesnt apear
//to do anything with children.
// a doc references this. add? protected override ControlCollection CreateControlCollection();

//TODO: If Test.InnerText = Test.InnerHtml without ever assigning anything into InnerHtml, you get this:
// Exception Details: System.Web.HttpException: Cannot get inner content of Message because the contents are not literal.
//[HttpException (0x80004005): Cannot get inner content of Message because the contents are not literal.]
//  System.Web.UI.HtmlControls.HtmlContainerControl.get_InnerHtml() +278
//  ASP.test3_aspx.AnchorBtn_Click(Object Source, EventArgs E) in \\genfs2\www24\bobsmith11\test3.aspx:6
//  System.Web.UI.HtmlControls.HtmlAnchor.OnServerClick(EventArgs e) +108
//  System.Web.UI.HtmlControls.HtmlAnchor.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +26
//  System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +18
//  System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +149
//  System.Web.UI.Page.ProcessRequestMain() +660


namespace System.Web.UI.HtmlControls
{
	public abstract class HtmlContainerControl : HtmlControl{
		
		private string _innerHtml = String.Empty;
		private string _innerText = String.Empty;
		private bool _doText = false;
		private bool _doChildren = true;
		
		public HtmlContainerControl() : base(){}
		
		public HtmlContainerControl(string tag) : base(tag) {}
		
		public virtual string InnerHtml
		{
			get { return _innerHtml; }
			set {
				_innerHtml = value;
				_doText = false;
				_doChildren = false;
			}
		}
		
		public virtual string InnerText
		{
			get { return _innerText; }
			set {
				_innerText = value;
				_doText = true;
				_doChildren = false;
			}
		}
		
		protected override void Render(HtmlTextWriter writer)
		{
			base.Render (writer);
			if (_doChildren)
				RenderChildren(writer);
			else if (_doText)
				writer.Write (HttpUtility.HtmlEncode (_innerText));
			else
				writer.Write (_innerHtml);

			RenderEndTag (writer);
		}

		protected virtual void RenderEndTag (HtmlTextWriter writer)
		{
			writer.WriteEndTag (TagName);
		}
	}
}