2014-09-02 64 views
0

我在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來禁用特定的按鈕。

在此先感謝。

回答

0

試試這個

If Captcha1.UserValidated Then 
     lblMessage.ForeColor = System.Drawing.Color.Green 
     Response.Redirect("~/Accounts/AccountsApproval/" & Session("IDs")) 
     bttnApprove.Enable = false 
    Else 
     lblMessage.ForeColor = System.Drawing.Color.Red 
     lblMessage.Text = "InValid" 
     bttnVerify.Enable = false 
    End If 

您可以啓用或通過設置屬性Button.Enable禁用按鈕。

+0

這個按鈕是從 – Carisle 2014-09-02 10:45:58

+0

其他頁面您使用的母版頁 – 2014-09-02 10:46:58

+0

是的,但這個按鈕是在內容頁... – Carisle 2014-09-02 10:47:56

0

使用bttnApprove.Enable = false;

+0

我試了一下,事情是,如何從內容頁禁用按鈕到另一個內容頁面。 – Carisle 2014-09-02 11:02:03

相關問題