We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89cfcda commit 635f4c0Copy full SHA for 635f4c0
1 file changed
README.md
@@ -38,8 +38,7 @@ Classic mode is not supported due to the nature of the classic IIS pipeline
38
<%@ Application Language="C#" %>
39
40
<script RunAt="server">
41
- void Application_Start(object sender, EventArgs e)
42
- {
+ void Application_Start(object sender, EventArgs e) {
43
this.UseAuthentication();
44
}
45
</script>
@@ -72,7 +71,7 @@ public partial class WebFormsMasterPage : System.Web.UI.MasterPage
72
71
```
73
### WebMethods inside Page Classes & WebMethods inside WebService Classes:
74
```csharp
75
-[RequiresAuthentication]
76
[WebMethod]
77
-public string AjaxMethod() {
+[RequiresAuthentication]
+public string AjaxMethod() { ... }
78
0 commit comments