I using server side customvalidator in a FormVIew insert form. It
triggers and regardless of the fact if args.IsValid is true or false
the data get inserted. am I missing something?
Thanks,
Mo1) are you sure it's firing?
2) where is the insert/save code firing?
3) do you have a manual Page.Validate and do you have a if(Page.IsValid)
check before insert?
--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Mo" <le_mo_mo@.yahoo.com> wrote in message
news:1105736397.574472.172070@.z14g2000cwz.googlegr oups.com...
> Hi,
> I using server side customvalidator in a FormVIew insert form. It
> triggers and regardless of the fact if args.IsValid is true or false
> the data get inserted. am I missing something?
> Thanks,
> Mo
Hi,
Thank you for the reply
1) are you sure it's firing?
Yes, I have veried that if goes through "if,then,else"
2) where is the insert/save code firing?
I am using ASP.Net 2.0 and assigned the "insert" command to the
button in the form. It is the standard insert code generated by Visual
Studio
3) do you have a manual Page.Validate and do you have a if(Page.IsValid)
check before insert?
I do not have this. I am not sure where it goes within the standard
generated code.
Any Ideas is greatly appreciated.
Mo
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
I have the following code
void Button2_Click(object sender, EventArgs e)
{
if (Page.IsValid)
{
SqlDataSource1.Insert();
Response.Write(" Valid");
}
else
{
Response.Write(" notValid");
}
}
which does the control and will not insert if value is not valid but if
it is valid value then insert nulls in the database. Somewhere I am
missing the binding between the form and the control
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
0 comments:
Post a Comment