本文介绍了aspx文本框的Keypress事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我没有找到aspx文本框的按键事件,我希望在.cs page.some中帮助我这个事件。

i did''t find the keypress event for the aspx textbox, i want this event in .cs page.some one help me.

推荐答案


<asp:textbox id="Textbox1" runat="server" ></asp:textbox>





在KeyPress活动上调用Javascript函数



Javascript function to be called on KeyPress event

function Samplefunction()
    {
        alert('You have pressed a key inside the textbox');
    }





在您的代码隐藏文件中,您可以使用以下行调用javaScript函数。



In your code behind file you can call the javaScript function using the below line.

Textbox1.Attributes.Add("onkeypress", "Samplefunction()");



你在文本框中输入了一些文本,弹出一条警告信息。

有关KeyPress事件的更多信息,请参阅此链接

[]



希望这有帮助。


When ever you enter some text in the textbox an alert message pops up.
Refer this link for more information on KeyPress event
onkeypress Event[^]

Hope this helps.


这篇关于aspx文本框的Keypress事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-26 20:36