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/referencesource/System.Web/UI/WebControls/Repeater.cs')
-rw-r--r--mcs/class/referencesource/System.Web/UI/WebControls/Repeater.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/mcs/class/referencesource/System.Web/UI/WebControls/Repeater.cs b/mcs/class/referencesource/System.Web/UI/WebControls/Repeater.cs
index bb4bbfdc14c..e9ff52cba9f 100644
--- a/mcs/class/referencesource/System.Web/UI/WebControls/Repeater.cs
+++ b/mcs/class/referencesource/System.Web/UI/WebControls/Repeater.cs
@@ -999,10 +999,10 @@ namespace System.Web.UI.WebControls {
/// Saves view state.
/// </devdoc>
protected override object SaveViewState() {
- //
-
-
-
+ // Bug 322689: In the web farms scenario, if a web site is hosted in 4.0 and 4.5 servers
+ // (though this is not a really supported scenario, we are fixing this instance),
+ // the View state created by 4.0 should be able to be understood by 4.5 controls.
+ // So, we create a Pair only if we are using model binding and otherwise fallback to 4.0 behavior.
object baseViewState = base.SaveViewState();