| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 515 人关注过本帖
标题:新手!为什么控件提交不了
只看楼主 加入收藏
dosonline
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2012-1-4
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:2 
新手!为什么控件提交不了
为什么就是提交不了,该怎么改?谢谢指教!
using System;
using System.Collections.Generic;
using
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsExample1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        { }
            private void button1_Click(object sender,EventArgs e)
            {
                if (textBox1.Text=="")
                {
        MessageBox.Show("请输入姓名","提示",MessageBoxButtons.OK,MessageBoxIcon.Exclamation);
        textBox1.Focus();
        return;
                }
                if (comboBox1.Text =="")
                {MessageBox.Show ("请选择出生日期","提示",MessageBoxButtons.OK,MessageBoxIcon.Exclamation);
                comboBox1.Focus();
                    return ;
                }
                if(textBox2.Text=="")
                {
                    MessageBox.Show ("请输入E-mail地址","提示",MessageBoxButtons.OK ,MessageBoxIcon.Exclamation );
                    textBox2.Focus();
                    return;
                }
                if(textBox2.Text.IndexOf('@')==-1||textBox2.Text.IndexOf('@')==0||textBox2.Text.IndexOf('@')>textBox2.Text.Length -6)
                {
                    MessageBox.Show("E-mail地址有误","提示",MessageBoxButtons.OK,MessageBoxIcon.Exclamation );
                    textBox2.Focus();
                    return;
                }
                MessageBox.Show(textBox1.Text +"你好,计算机网络技术班通过!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information );
                this.Close();
        }
   
    }
}
搜索更多相关主题的帖子: class private public 
2012-01-04 22:25
dosonline
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2012-1-4
收藏
得分:0 
图片附件: 游客没有浏览图片的权限,请 登录注册
2012-01-04 22:27
wypdragon
Rank: 3Rank: 3
等 级:论坛游侠
帖 子:29
专家分:110
注 册:2011-11-19
收藏
得分:14 
看看构造函数
2012-01-05 08:31
快速回复:新手!为什么控件提交不了
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016764 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved