Sign in | Join
Last post 10-18-2007 1:51 PM by joteke. 1 replies.
Sort Posts: Oldest to newest Newest to oldest
You can omit validation by setting CausesValidation="False" to the LinkButton (declaratively). You can also set it in code, in case needed.
[C#] LinkButton1.CausesValidation = false;
[VB]LinkButton1.CausesValidation = False