We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e5bceb commit d50ab4dCopy full SHA for d50ab4d
class/Controller.cs
@@ -100,6 +100,13 @@ public void IgnoreAll()
100
IgnoreLayout = true;
101
}
102
103
+ public void IgnoreLayoutForPostBack(IHeaderDictionary Headers)
104
+ {
105
+ if (Headers.TryGetValue("Post-Back", out var value))
106
+ if (value == "true")
107
+ IgnoreLayout = true;
108
+ }
109
+
110
/// <summary>
111
/// This Method Supports Query String
112
/// </summary>
0 commit comments