展开全部
<script type="text/javascript">
function Check() {
if (document.getElementById("<%=TextBox1.ClientID %>").value == "") {
alert("文本框为空");
return false;
}
else {
alert("文本框不为空");
}
}
</script>这段卸载head里
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:Button ID="Button1" OnClientClick="return Check();" runat="server" Text="Button" />//这两句话写在form里,自己试试吧
function Check() {
if (document.getElementById("<%=TextBox1.ClientID %>").value == "") {
alert("文本框为空");
return false;
}
else {
alert("文本框不为空");
}
}
</script>这段卸载head里
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:Button ID="Button1" OnClientClick="return Check();" runat="server" Text="Button" />//这两句话写在form里,自己试试吧
更多追问追答
追问
.。。。。这样的话是不是空点button都显示为空了。。。
追答
如果你的文本框里没写东西就会弹出提示"文本框为空"(即if里面的代码),如果你的文本框写了东西,哪怕只打了空格,也会弹出提示"文本框不为空",就是else里面的代码
展开全部
提交按钮的onclik()时间里 if(textbox.value==“”){alert(“文本不能为空”);}
追问
这个也不行,试过了。一直都没错误没反应
追答
function btnOK() {
if (document.getElementById("txt1").value == "") {
alert("不能为空");
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
private void btnSave_Click(object sender, EventArgs e)
{
if (dtSelectEmployee.Text.Trim())
{
MessageBox.Show("咨询人员不能为空!", "错误消息");
return;
}
}
{
if (dtSelectEmployee.Text.Trim())
{
MessageBox.Show("咨询人员不能为空!", "错误消息");
return;
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
js代码可以实现,C#同时可以,网上一搜一大把
追问
这个我也知道一搜一大把啊。可是主要的是怎么用啊。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询