我在Approve.aspx中有兩個(2)按鈕,它是bttnVerify和bttnApprove。問題是,在頁面加載過程中,bttnApprove.visible = false,當用戶單擊bttnVerify時,它將重定向到另一個頁面。重定向下面的頁面代碼。如何在重定向到另一個asp.net頁面時禁用按鈕?
Captcha1.ValidateCaptcha(txtCaptcha.Text.Trim())
If Captcha1.UserValidated Then
lblMessage.ForeColor = System.Drawing.Color.Green
Response.Redirect("~/Accounts/AccountsApproval/" & Session("IDs"))
Else
lblMessage.ForeColor = System.Drawing.Color.Red
lblMessage.Text = "InValid"
End If
從上面的代碼中,當它的驗證碼進行驗證,我想在這頁是bttnApprove和bttnVerify.visible = true來禁用特定的按鈕。
在此先感謝。
這個按鈕是從 – Carisle 2014-09-02 10:45:58
其他頁面您使用的母版頁 – 2014-09-02 10:46:58
是的,但這個按鈕是在內容頁... – Carisle 2014-09-02 10:47:56