vote up 0 vote down star

Hi,

i want to create a validatior via code behind.But although i create it,it doesnt fire when postback occurs.I craete validator in Page's Onload event.What can be reason?Here is my code.

Public Sub Validate(ByVal p_Page As Page, ByRef p_AssignedControl As System.Web.UI.WebControls.WebControl, ByVal p_Message As String)

    Dim v_VCALLOUT As New AjaxControlToolkit.ValidatorCalloutExtender

    Dim r_VALIDATOR As New System.Web.UI.WebControls.RequiredFieldValidator
    Dim placeHolder As PlaceHolder = p_Page.FindControl("Vld")


    With r_VALIDATOR

        .ID = "r_" & p_AssignedControl.ID
        .ControlToValidate = p_AssignedControl.ID
        .Display = ValidatorDisplay.None
        .ErrorMessage = p_Message
        .Font.Name = "Verdana"
        .Font.Size = FontSize.XSmall

    End With

    With v_VCALLOUT

        .ID = "v_" & r_VALIDATOR.ID
        '.CssClass = "highlight"
        .HighlightCssClass = "highlight"
        .WarningIconImageUrl = "~/images/warning.gif"
        .CloseImageUrl = "~/images/close.gif"
        .TargetControlID = r_VALIDATOR.ID
        .Enabled = True

    End With

    placeHolder.Controls.Add(v_VCALLOUT)
    placeHolder.Controls.Add(r_VALIDATOR)


End Sub
flag

67% accept rate

2 Answers

vote up 0 vote down

First thought: (from MSDN)

None The validation message is never displayed inline.

Do you have a Validation Summary?

Second thought:

try to create your validators in the Page_Init event.

link|flag
i tried second,but it doesnt work.I didnt understand "None The validation message is never displayed inline".When i use these controls in aspx,it works.Why not in code behind?I think this is about page events but i couldnt guess where. – Alexander Oct 31 at 13:07
What does Public Sub Validate(ByVal p_Page As Page, ByRef p_AssignedControl As System.Web.UI.WebControls.WebControl, ByVal p_Message As String) mean? – Arthur Oct 31 at 13:56
because i declare this sub in a module and then call it in page.I dont wanan repeat same code in my pages. – Alexander Oct 31 at 14:07
OK - I see. Pls. post also the calling code in your page. Your Sub looks fine. – Arthur Oct 31 at 14:57
i call it on_load or on_init so.mdlUtilities.Validate(Me, Me.txtEntry, "Please Enter Something") – Alexander Oct 31 at 22:04
show 2 more comments
vote up 0 vote down check

I found reason.I call Validate Sub if page.IsPostpact=False.If i call Validate Sub in every postback,it works great.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.