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

ChangeLog « 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: 08e580fe84011345ca28ed2006c9fa33217b0564 (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
2002-06-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* HtmlForm.cs:
	(RenderChildren): use OnFormRender and OnFormPostRender.

2002-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* HtmlSelect.cs:
	(RenderAttributes): new -> override and fixes stack overflow.
	(RenderChildren): only 1 option can be selected at any given time
	except when Multiple property is true.
	(Multiple): the attribute value is either "true" or "false", not 
	"multiple".

	* HtmlTable.cs:
	(Add):
	(AddAt): allow HtmlTableRow as children, not HtmlTableCell.

	* HtmlTableCell.cs:
	(RenderEndTag): new -> override.

	* HtmlTableRow.cs:
	(RenderChildren): fixed another stack overflow.
	(RenderEndTag): new -> override.

	* HtmlTextArea.cs:
	(RenderAttributes): new -> override.


2002-06-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* HtmlInputHidden.cs: fixed constructor.

	* HtmlInputRadioButton.cs:
	(RenderAttributes): fixed stack overflow.

	(Name):
	(RenderedName): new -> override.

	(Value): new property. 

	* HtmlInputText.cs:
	(RenderAttributes): fixed the same kind of stack overflow and make
	string comparison case insensitive.

2002-06-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* HtmlForm.cs: fixed name of Enctype property and render enctype
	enctype attribute.

	* HtmlInputControl.cs: tag type is "input", not "type".

2002-06-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* HtmlControl.cs: Render contents moved to new RenderBeginTag method,
	defined in MS docs. 
	
	* HtmlForm.cs: Render output when no IE browser.

	* HtmlInputButton.cs: added constructor without arguments. Xsp used it, 
	though now it always use the other .ctor.
	
	* HtmlInputControl.cs: cosmetic changes and implemented set_Name.

2002-06-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* HtmlButton.cs: RenderAttributes is an override, not new.

	* HtmlContainerControl.cs: use the new Render method in HtmlControl.

	* HtmlControl.cs: added Render method to render the tag and its
	attributes. Works for container and non-containers.

	* HtmlImage.cs: RenderAttributes don't need to be new. Implemented
	Height property.
	
2002-06-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* HtmlContainerControl.cs: some formatting and use HttpUtility.Encode
	instead of Page.Server to encode InnerText.

2002-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* HtmlAnchor.cs:
	(RenderAttributes): new -> override and fixed little bug that made
	it cause an stack overflow.

	* HtmlContainerControl.cs: reformatted and added tag and attributes 
	rendering.

	* HtmlGenericControl.cs: removed TagName, which is already in 
	HtmlControl.

	* HtmlTable.cs:
	(RenderEndTag): new -> override.

2002-06-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* System.Web.UI.HtmlControls/HtmlForm.cs:
	(RenderAttributes): changed new by override.
	(Name): allow setting the property.

2002-05-10  Duncan Mak  <duncan@ximian.com>

	* HtmlTableCellCollection.cs (this): Updated the indexer to return
	the right type, HtmlTableCell instead of HtmlTableRow. 

	* HtmlInputImage.cs (OnServerClick): Commented out parts that
	won't compile.

	* HtmlForm.cs (RenderAttributes): 
	(RenderChildren): Commented out code that doesn't compile. 

2002-05-07  Duncan Mak  <duncan@ximian.com>

	* HtmlSelect.cs (TrackViewState): Added 'new' keyword to avoid
	clashing with the method defined in the parent class.
	(OnDataBinding): Added missing casts.

	* HtmlForm.cs (Render): Fixed call too SetAttribute, need to cast
	'this' to IAttributeAccessor before calling interface method.
	Also renamed some calls to reflect changes in the API.

	* HtmlControl.cs (WriteOnClickAttribute): Made it not static and
	fixed a typo.

2001-09-03  Leen Toelen  <toelen@hotmail.com>

        * HtmlAnchor.cs: Initial implementation.
        * HtmlTextArea.cs: Initial implementation.

2001-08-22  Bob Smith  <bob@thestuff.net>

         * HtmlContainerControl.cs: Initial implementation.
         * HtmlControl.cs: Initial implementation.
         * HtmlGenericControl.cs: Initial implementation.