e.CancelableArgs.Message is being Ignored

H

Hersh

Under certain circumstances I want to prevent a user from removing a row from
a repeating section. I therefore implemented an event handler for the
repeating section that looks like the following:

public void Report_Changing(object sender, XmlChangingEventArgs e)
{
if (notAtSite(sender, e))
return;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top