Gets a value that indicates whether the page is being rendered for the first time or is being loaded in response to a postback.
private void Page_Load()
{
if (!IsPostBack)
{
// Validate initially to force asterisks第一次加载
// to appear before the first roundtrip.
Validate();
}
}