Answers for "asp.net check if textbox is not empty"

C#
2

c# check if textbox is not empty

if (String.IsNullOrEmpty(textBox1.Text))
{
    // Do something...
}
Posted by: Guest on August-30-2020
0

asp validator check if textbox is empty

<asp:RequiredFieldValidator runat="server" ID="txtEURequiredValidator" ErrorMessage="EU should not be empty" />
Posted by: Guest on June-03-2021

Code answers related to "asp.net check if textbox is not empty"

C# Answers by Framework

Browse Popular Code Answers by Language