Get the data field from the Parameters in to a table and apply the Formula Operator. For a parameter named par_WHERE1_ADD_MANUAL apply XIH.GetParam("par_WHERE1_ADD_MANUAL") == null ? "xxxx": (((string)XIH.GetParam("par_WHERE1_ADD_MANUAL")).Trim() == "" ? "yyy": "ok")
So if the Parameter is a Null Value then xxxx is returned, if it is an empty string then yyy is returned, if everything is fine, then ok is returned. |