欢迎光临
我们一直在努力

对“学号”、“身份证”的数字分析(2)-.NET教程,算法/线程

建站超值云服务器,限时71元/月

摘要:
对身份证号码的分析同对学号的分析类似。

正文:
这里认为身份证号是18位的。

在页面上添加一个label控件,一个textbox控件,一个button控件,一个literal控件。label控件的text属性设为“身份证号:”,literal控件将显示身份证号里的信息。关键还是在button控件的click()事件中。

button控件的click()事件:
            string strid = txtid.text;

            if (!txtid.visible)
            {
                txtid.visible = true;
            }

            try
            {
                string stryear = strid.substring(6,4);        // 年    
                string strmonth = strid.substring(10,2);    // 月
                string strday = strid.substring(12,2);        // 日

                literal1.text = “您的生日是:”+stryear+”年”+strmonth+”月”+strday+”号”;
            }
            catch
            {
                response.write(“程序有错误!”);
            }
            finally
            {
            }
显示效果图:
 

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 对“学号”、“身份证”的数字分析(2)-.NET教程,算法/线程
分享到: 更多 (0)