zoukankan      html  css  js  c++  java
  • Atlas_UpdatePanel无刷新触发后台

    前台HTML代码
    using System;
    using System.Data;
    using System.Configuration;
    using System.Collections;
    using System.Web;
    using System.Web.Security;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.WebControls.WebParts;
    using System.Web.UI.HtmlControls;

    public partial class Atlas_UpdatePanel : System.Web.UI.Page
    {
        
    protected void Page_Load(object sender, EventArgs e)
        
    {

        }

        
    protected void selWeekday_SelectedIndexChanged(object sender, EventArgs e)
        
    {
            
    this.TextBox1.Text = this.selWeekday.SelectedItem.Text;
        }

        
    protected void btnSubmit_Click(object sender, EventArgs e)
        
    {
            
    this.Label1.Text = this.txtNormal.Text;
        }

    }

  • 相关阅读:
    virtualenv建立新的python环境
    c++ 类构造函数&析构函数
    Spring中的BeanPostProcessor和BeanFactoryPostProcessor
    01 | 日志段:保存消息文件的对象是怎么实现的?
    linux 常用命令大全
    select/poll/epoll
    Redis 数据结构 api操作复杂度 ~~~~
    Redis底层数据结构----1 结构与命令
    Linux进阶系列 1 --- 进程通信
    让我们来写个算法吧,(6);链表排序
  • 原文地址:https://www.cnblogs.com/ding0910/p/430441.html
Copyright © 2011-2022 走看看