Hi i have two buttons, i want to put validation on them, so that at least one is filled in or both.
I have the following to ensure a single textbox is filled in;
public static bool IsTextboxEmpty(System.Web.UI.WebControls.TextBox textBox)
{
if (String ...
Go to the complete details ...