-2
我想在服務器端使用javascript
來編寫textchange event
。使用c#asp.net中的JavaScript調用服務器端的TextChange事件#
我寫道,沒有使用javascript
。 我設置了AutoPostback:true
的文本框屬性。
我想提前寫這篇文章onchangeevent of javascript
感謝
我想在服務器端使用javascript
來編寫textchange event
。使用c#asp.net中的JavaScript調用服務器端的TextChange事件#
我寫道,沒有使用javascript
。 我設置了AutoPostback:true
的文本框屬性。
我想提前寫這篇文章onchangeevent of javascript
感謝
<script language="javascript" type="text/javascript">
function CallTextChange()
{
__doPostBack("TextBox1", "TextChanged");
}
</script>
調用 'CallTextChange' 您要
的詳細功能見這how to make onchange event happened in code-behind in ASP.NET?