Hi,
I have textbox to enter URL and on button click of Validate.
It should display the Failed message on label1 and for success it should display on label2.
In the button click I am able to write the piece of code as mentioned below
But the problem is the label1 and label2 are not getting updated with success or failure.
Please let me know if I am missing anything here
If(
IsMatch(
EntraIDAppRedirectURLSPADataCardValue.Text,
"(?:http(s)?:\/\/)?[\w.-]+(?:\.[\w\.-]+)+[\w\-\._~:/?#[\]%@!\$&’\(\)\*\+,;=.]+$"
),
true,
false
)