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/ChangePassword.cs')
-rw-r--r--mcs/class/referencesource/System.Web/UI/WebControls/ChangePassword.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/mcs/class/referencesource/System.Web/UI/WebControls/ChangePassword.cs b/mcs/class/referencesource/System.Web/UI/WebControls/ChangePassword.cs
index cd906e11df0..4588444664e 100644
--- a/mcs/class/referencesource/System.Web/UI/WebControls/ChangePassword.cs
+++ b/mcs/class/referencesource/System.Web/UI/WebControls/ChangePassword.cs
@@ -1939,9 +1939,9 @@ namespace System.Web.UI.WebControls {
string cancelPageUrl = CancelDestinationPageUrl;
if (!String.IsNullOrEmpty(cancelPageUrl)) {
- // Microsoft suggested that we should not terminate execution of current page, to give
+ // [....] suggested that we should not terminate execution of current page, to give
// page a chance to cleanup its resources. This may be less performant though.
- // Microsoft suggested that we need to call ResolveClientUrl before redirecting.
+ // [....] suggested that we need to call ResolveClientUrl before redirecting.
// Example is this control inside user control, want redirect relative to user control dir.
Page.Response.Redirect(ResolveClientUrl(cancelPageUrl), false);
}
@@ -1993,9 +1993,9 @@ namespace System.Web.UI.WebControls {
string continuePageUrl = ContinueDestinationPageUrl;
if (!String.IsNullOrEmpty(continuePageUrl)) {
- // Microsoft suggested that we should not terminate execution of current page, to give
+ // [....] suggested that we should not terminate execution of current page, to give
// page a chance to cleanup its resources. This may be less performant though.
- // Microsoft suggested that we need to call ResolveClientUrl before redirecting.
+ // [....] suggested that we need to call ResolveClientUrl before redirecting.
// Example is this control inside user control, want redirect relative to user control dir.
Page.Response.Redirect(ResolveClientUrl(continuePageUrl), false);
}
@@ -2066,9 +2066,9 @@ namespace System.Web.UI.WebControls {
string successPageUrl = SuccessPageUrl;
if (!String.IsNullOrEmpty(successPageUrl)) {
- // Microsoft suggested that we should not terminate execution of current page, to give
+ // [....] suggested that we should not terminate execution of current page, to give
// page a chance to cleanup its resources. This may be less performant though.
- // Microsoft suggested that we need to call ResolveClientUrl before redirecting.
+ // [....] suggested that we need to call ResolveClientUrl before redirecting.
// Example is this control inside user control, want redirect relative to user control dir.
Page.Response.Redirect(ResolveClientUrl(successPageUrl), false);
}