i have a textbox which is filled with date from a datepicker(calendar is accessed by a link button) and a submit button.
i created a required field validator for the textbox so that it is to be filled.The problem im facing is that the required field validator is not allowing me to click on the linkbutton(which makes me populate the textbox with a date)but instead it focuses on the textbox always.im stuck here plz help me .
i have a textbox which is filled with date from a datepicker(calendar is accessed
Share
You can use “validation groups”.
On the controls property set the ValidationGroup to something like this.
You need the LinkButton on a different ValidationGroup.
This can all be done in design.
With this the validation will only affect what is on ValidationGroup 1.