5
Answers

Why we use (!IsPostBack) in c#?

Photo of Raja

Raja

10y
263
1 Others
What is the use of (!IsPostBack)

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

Answers (5)