5
Answers

Why we use (!IsPostBack) in c#?

Photo of Raja

Raja

9y
1.8k
1
What is the use of (!IsPostBack)

if
(!IsPostBack)
{
 // Validate initially to force asterisks
 // to appear before the first roundtrip.
Validate();
 }

Answers (5)