Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
单击 asp.net 按钮时,页面将恢复为 page_load 的原始状态。我正在 jQuery 的 $('document').ready() 事件中编写按钮的单击功能。任何帮助都将是高度赞赏。
这是通常的行为。
您应该做的是,在您的 Page_Load 事件中将您的页面初始化代码(加载下拉数据等)保持在 if 条件下,以检查这是否是回发。您可以使用 的IsPostBack属性Page来检查这个
IsPostBack
Page
protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { //code to load initial data (dropdown etc..) } }