Click the submit button and the value of DropDownList changes to the default value for analysis.

Source: Internet
Author: User

After you click the submit button, all the control values bound to the database on the page are restored to the default value.

The reason is to write the binding function loadData () in

If (! IsPostBack)
{
Your binding function;
}
Otherwise, the page is reloaded, and the values of all controls are changed to the initial values.

IsPostBack is an attribute of the bool type in the Page class. It is used to determine whether the current Page is being loaded or accessed for the first time in response to the return of the client.

When IsPostBack = true, it indicates loading in response to the client sending back.
When IsPostBack is set to false, it indicates that it is being loaded and accessed for the first time.

That is to say, only when IsPostBack = false is executed, bind the function, this will not cause page overloading, and lead to page control initialization.

IsPostBack introduction:
Http://msdn.microsoft.com/en-us/library/system.web.ui.page.ispostback.aspx
Http://www.cxy.me/doc/5446.htm

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.