一段简单的代码

来源:互联网 发布:vue.js 上传图片插件 编辑:程序博客网 时间:2024/05/01 06:23
在Defalut.aspx.cs中给处理程序添加代码如下:

public partial class_Default:System.Web.UI.Page
{
    protected void buttonSubmit_Click(object sender,EventArgs e)  
    {
     string selectedEvent = dropDownListEvents.SelectedValue;
     string firstname = textFirstname.Text;
     string lastname = textLastname.text;
     string email = textEmail.Text;
    
     labelResult.Text = firstname + "" + lastname + "selected the event " + selectedEvent ;
    }
}  
            
原创粉丝点击