本帖最后由 许庭洲 于 2014-4-25 10:28 编辑
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Test4
{
public partial calss Form1 : Form
{
public Form1()
{
InitialzeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string 身份证号 = textBox1.Text;
//检验是否是合法的身份证号,不考虑X
//131226198105223452
pictureBox1.Visible = false;
string strYear = 身份证号.Substring(6,4);
int year = Convert.ToInt32(strYear);
if(DateTime.Now.Year - year > 18)
{
pictureBox1.Visible = true;//表示用户符合成年人身份,可以查看改图片
}
}
}
}
|