* BoundField.cs: fixed: GetDesignTimeValue() svn path=/trunk/mcs/; revision=68394
@@ -212,7 +212,7 @@ namespace System.Web.UI.WebControls {
protected virtual object GetDesignTimeValue ()
{
- return GetBoundValue (Control);
+ return "Databound";
}
object GetBoundValue (Control controlContainer)
@@ -1,3 +1,7 @@
+2006-11-23 Igor Zelmanovich <[email protected]>
+
+ * BoundField.cs: fixed: GetDesignTimeValue()
2006-11-23 Igor Zelmanovich <[email protected]>
* SiteMapDataSource.cs: fixed: GetViewNames()
@@ -302,7 +302,6 @@ namespace MonoTests.System.Web.UI.WebControls
[Test]
- [Category ("NotWorking")]
public void BoundField_GetDesignTimeValue () {
string result;
PokerBoundField bf = new PokerBoundField ();
+ * BoundFieldTest.cs: removed NotWorking attributes.
* SiteMapDataSourceTest.cs: removed NotWorking attributes.