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 a0d132c commit a3168e6Copy full SHA for a3168e6
doc/send_data.md
@@ -83,7 +83,7 @@ namespace YourProjectName
83
{
84
public void PageLoad(HttpContext context)
85
86
- if (!string.IsNullOrEmpty(context.Request.Form["btn_Button"]))
+ if (context.Request.Form["btn_Button"].has())
87
btn_Button_Click(context);
88
}
89
@@ -129,7 +129,7 @@ We added a Controller class and in the `PageLoad` method we check the presence o
129
130
Checking the existence of data with the name `btn_Button`
131
```csharp
132
-if (!string.IsNullOrEmpty(context.Request.Form["btn_Button"]))
+if (context.Request.Form["btn_Button"].has())
133
134
```
135
0 commit comments