博客
关于我
vs2015 dynamicweb4-2
阅读量:306 次
发布时间:2019-03-03

本文共 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/

你可能感兴趣的文章
nrf开发笔记一开发软件
查看>>
NS3 IP首部校验和
查看>>
NSDateFormatter的替代方法
查看>>
NSError 的使用方法
查看>>
nsis 安装脚本示例(转)
查看>>
NSJSON的用法(oc系统自带的解析方法)
查看>>
nslookup 的基本知识与命令详解
查看>>
NSOperation基本操作
查看>>
NSRange 范围
查看>>
NSSet集合 无序的 不能重复的
查看>>
NSUserdefault读书笔记
查看>>
NT AUTHORITY\NETWORK SERVICE 权限问题
查看>>
NT symbols are incorrect, please fix symbols
查看>>
ntelliJ IDEA 报错:找不到包或者找不到符号
查看>>
ntko web firefox跨浏览器插件_深度比较:2019年6个最好的跨浏览器测试工具
查看>>
ntko文件存取错误_苹果推送 macOS 10.15.4:iCloud 云盘文件夹共享终于来了
查看>>
ntpdate 通过外网同步时间
查看>>
NTPD使用/etc/ntp.conf配置时钟同步详解
查看>>
NTP及Chrony时间同步服务设置
查看>>
NTP配置
查看>>