在.net中如何循环的判断textbox里面的值是否为空

就是在一个页面上有许多的Textbox我现在要完成的就是在某个textbox里面没有输入值的时候给个提示并将焦点定在这个textbox框中。注意不要用.net中自带的验证... 就是在一个页面上有许多的Textbox 我现在要完成的就是在某个textbox里面没有输入值的时候给个提示并将焦点定在这个textbox框中。注意不要用.net中自带的验证控件,最好是源代码 展开
 我来答
lnwoeurzqt
2015-04-01 · TA获得超过306个赞
知道答主
回答量:107
采纳率:100%
帮助的人:43.9万
展开全部
假设你的这些TextBox都是在一个WinForm界面上,那么: foreach(Control c in this.Controls) { TextBox txtBox = c as TextBox; if(txtBox!=null && txtBox.Text.Trim()=="") { MessageBox.Show("当前文本框没有任何内容!"); txtBox.Focus(); } } 追问: 但是我的是ASP.NET啊 你这个怎么不行啊 回答: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="TextBoxes.WebForm1" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns=" http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <script src=" http://ajax.microsoft.com/ajax/jquery/jquery-1.4.4.min.js" type="text/javascript"></script> <script> function Button1_onclick() { var textboxes = $(":text"); for (var i = 0; i < textboxes.length; i++) { if ($(textboxes[i]).val() == "" || $(textboxes[i]).val()==null) { alert("没有内容!"); var name = $(textboxes[i]).attr("name"); document.getElementsByName(name)[0].focus(); break; } } } </script> </head> <body> <form id="form1" runat="server"> <div> <input id="Button1" type="button" value="button" onclick="return Button1_onclick()" /></div> </form> </body> </html> using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace TextBoxes { public partial class WebForm1 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { for (int i = 0; i < 11; i++) { form1.Controls.Add(new TextBox()); } } } } }

希望采纳
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式