当前位置:  编程技术>.net/c#/asp.net

c# winfrom 手机号码归属地查询的简单例子(图文)

    来源: 互联网  发布时间:2014-08-30

    本文导语:  完整代码如下,比照数据库中的手机号码格式,然后检测出归属地。   代码示例: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms...

完整代码如下,比照数据库中的手机号码格式,然后检测出归属地。
 

代码示例:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Configuration;
using System.Data.SqlClient;
namespace 号码归属地查询
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        private void Form1_Load(object sender, EventArgs e)
        {
        }
        private void button1_Click(object sender, EventArgs e)
        {
           string conn=ConfigurationManager.ConnectionStrings["conn"].ConnectionString;
           string number,num;
           number = textBox1.Text.Trim();
           num = number.Substring(0,7);
           using (SqlConnection sqlconn = new SqlConnection(conn))
           {
               sqlconn.Open();
               SqlCommand comm = sqlconn.CreateCommand();
               comm.CommandText = "select * from list where num='"+num+"'";
               SqlDataReader read = comm.ExecuteReader();
               if (!read.Read())
               {
                   MessageBox.Show("没有您要找的号码的归属地!");
               }
               else
               {
                   lb_City.Text = read.GetString(read.GetOrdinal("city"));
                   lb_num.Text = read.GetString(read.GetOrdinal("code"));
                   lb_stype.Text = read.GetString(read.GetOrdinal("cardtype"));
               }
           }
        }
        private void textBox1_KeyPress(object sender,KeyPressEventArgs e)
        {
            if (e.KeyChar='a')
            {
                e.Handled =true;
            }
            if (textBox1.Text.Length == 11)
            {
                textBox1.ForeColor = System.Drawing.Color.Red;
            }
        }
       
    }
}

效果图,如下所示:


    
 
 

您可能感兴趣的文章:

  • C# winfrom 模拟ftp文件管理实现代码
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • winfrom 在业务层实现事务控制的小例子
  • WinFrom中label背景透明的实现方法
  • .NET WinFrom中给文本框添加拖放事件的代码
  • winfrom 打印表格 字符串的封装实现代码 附源码下载


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3