2012-08-03 74 views
1

當用戶單擊頁面上的保存按鈕時,我正在使用asp CustomValidator對幾個控件執行客戶端驗證。但是,此頁面非常長,因此他們無法看到顯示在驗證失敗的控件旁邊的驗證消息。我怎樣才能在保存按鈕旁邊放置一個通用的驗證信息,例如: '請解決上面的驗證錯誤',以便用戶知道頁面爲什麼沒有提交?如何在保存按鈕旁邊以及驗證控件旁邊顯示ASP.NET驗證消息?

+1

哥們去驗證摘要。 – ankur 2012-08-03 11:37:56

回答

3

您可以使用Validation Summary控件,您可以將它放在保存按鈕附近,它將提供所有無效驗證控件的摘要。

您可以使用以下規則進行定義:

<asp:ValidationSummary 
    id="programmaticID" 
    DisplayMode="BulletList | List | SingleParagraph" 
    EnableClientScript="true | false" 
    ShowSummary="true | false" 
    ShowMessageBox="true | false"       
    HeaderText="You need to resolve the following issues before you are able to continue:" 
    runat="server"/> 
相關問題