如何在mvc4中点击按钮时在文本框中插入数据?

时间:2014-04-20 09:08:42

标签: asp.net-mvc asp.net-mvc-4

当用户点击按钮时,我必须在文本框中显示数据。我正在使用Asp Button和Asp Textbox (在ASPX View Engine中)但是Button Click事件在MVC4中不起作用,当我点击按钮时它没有调用服务器端的任何代码或功能。
使用简单的一个文本框和按钮为我提供 ASPX View Engine 中的任何代码。当用户单击按钮时,它将在服务器的文本框中插入数据,并显示显示“数据已插入”的警报。
我用过

<script runat="server">

    Protected Sub BtSend_Click(sender As Object, e As EventArgs)


        text_mess.Value = Nothing
        ScriptManager.RegisterStartupScript(Me, [GetType](), "showalert", "alert('Message Sent');", True)
    End Sub
</script>

<textarea id="text_mess"  runat="server" name="text_mess" draggable="false">
 Message
</textarea>
<br />
<asp:Button CssClass="login-submit" ID="BtSend" runat="server" Text="Send"
 OnClick="BtSend_Click"  />

0 个答案:

没有答案