DetailsView が更新され、DetailView の [Update Command] ボタンをクリックした後。フィールドの 1 つを「完了」に設定したいと考えています。ここで何が間違っていますか?お願いします。ヘルプ。ここに私のコードビハインドがあります:
Protected Sub Test(sender As Object, e As System.Web.UI.WebControls.DetailsViewUpdatedEventArgs) Handles DetailsView1.ItemUpdated
If IsPostBack Then
Dim TextBox7 As TextBox = TryCast(DetailsView1.Rows(0).Cells(0).FindControl("TextBox7"), TextBox)
TextBox7.Text = "Complete"
End If
End Sub