本文共 1316 字,大约阅读时间需要 4 分钟。
个人信息录入
using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;namespace dynamicweb4_2{ public partial class WebForm1 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { // 页面加载时初始化 } protected void btnSubmit_Click(object sender, EventArgs e) { // 检查性别选择 if (rbMale.Checked) { lblTips.Text = "性别:男"; } else { lblTips.Text = "性别:女"; } // 检查生源地选择 if (rblOrigin.SelectedIndex != -1) { lblTips.Text += "生源地:" + rblOrigin.SelectedItem.Text; } else { lblTips.Text += "生源地:未经性选择"; } } }} 转载地址:http://vcrm.baihongyu.com/