显示文本框条目的消息
有没有办法显示消息:“值*不允许” 当用户在文本框中输入时。
FilteredTextBoxExtender 不允许您输入值,但没有任何消息。
我什至可以有一个 Button_click,但这需要我在后面的代码中进行更改..而且我不想这样做。
modalpopup 和 filtertextboxextender 不能一起使用。
目前我正在使用这个,但我无法从中收到消息
<cc1:FilteredTextBoxExtender ID="ext_Box_FilteredTextBoxExtender"
runat="server" Enabled="True" FilterMode="InvalidChars" FilterType="Custom" InvalidChars="*"
TargetControlID="up_Box">
</cc1:FilteredTextBoxExtender>
is there a way to to display a message: " value * not allowed"
when a user is inputing in a textbox.
FilteredTextBoxExtender does not allow u enter a value but there is no message with it.
i can have a Button_click even but that will require me to do changes in my code behind.. and i dont want to do that.
cant modalpopup and filtertextboxextender be used together.
currently i am using this but i cant get a message out of ths
<cc1:FilteredTextBoxExtender ID="ext_Box_FilteredTextBoxExtender"
runat="server" Enabled="True" FilterMode="InvalidChars" FilterType="Custom" InvalidChars="*"
TargetControlID="up_Box">
</cc1:FilteredTextBoxExtender>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不太确定,但我认为您正在寻求验证。
查看 ASP.NET 验证器。
http://msdn.microsoft.com/en-us/library/aa479013.aspx
I'm not quite sure but I think you are looking for validation.
Look at the ASP.NET validator.
http://msdn.microsoft.com/en-us/library/aa479013.aspx