回答編集履歴

1

訂正(トリガーにしたいボタンがある CheckBoxListTest.aspx.cs のコード)

2020/12/11 06:10

投稿

退会済みユーザー
test CHANGED
@@ -190,47 +190,29 @@
190
190
 
191
191
  using System;
192
192
 
193
- using System.Web.UI.WebControls;
194
-
195
193
 
196
194
 
197
195
  namespace WebApplication1
198
196
 
199
197
  {
200
198
 
201
- public partial class ChechBoxListUserControl : System.Web.UI.UserControl
199
+ public partial class CheckBoxListTest : System.Web.UI.Page
202
200
 
203
201
  {
204
202
 
205
203
  protected void Page_Load(object sender, EventArgs e)
206
204
 
205
+ {
206
+
207
+ }
208
+
209
+
210
+
211
+ protected void Button1_Click(object sender, EventArgs e)
212
+
207
213
  {
208
214
 
209
-
210
-
211
- }
212
-
213
-
214
-
215
- protected void CustomValidator1_ServerValidate(object source, ServerValidateEventArgs args)
215
+ Label1.Text = "Page.IsValid: " + Page.IsValid;
216
-
217
- {
218
-
219
- if (CheckBoxList1.SelectedIndex == -1)
220
-
221
- {
222
-
223
- args.IsValid = false;
224
-
225
- }
226
-
227
- else
228
-
229
- {
230
-
231
- args.IsValid = true;
232
-
233
- }
234
216
 
235
217
  }
236
218