Simple Search based on Three Parameters

The Search should happen even when one element of the form is not Empty.

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
isParamNotEmpty = false;
 
if(param1.isNotEmpty())
{
  .
  .
  Other Coding Lines
  .
  isParamNotEmpty = true;
}
 
if(param2.isNotEmpty())
{
  .
  isParamNotEmpty = true;
}
 
if(param3.isNotEmpty())
{
  .
  .
  isParamNotEmpty = true;
}
 
if(isParamNotEmpty)
{
  doSearch();
}

Comments are closed.