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;
        }

    }

  • 相关阅读:
    Delphi 获取时间的年月日
    Tlist删除技巧
    SQL Server 2008 允许远程连接的配置
    initialization & finalization
    display属性(元素转换)
    float 浮动
    盒模型
    行内元素和块级元素水平及垂直居中
    html常用的几个标签
    html基础
  • 原文地址:https://www.cnblogs.com/ding0910/p/430441.html
Copyright © 2011-2022 走看看