摘要:
对身份证号码的分析同对学号的分析类似。
正文:
这里认为身份证号是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
{
}
显示效果图: