用于捕获用户键盘敲击的文本框

发布于 2024-10-19 14:44:07 字数 168 浏览 3 评论 0原文

在其中一个页面上,我需要添加一个文本框,用户可以在其中输入文本。对我们来说,捕获用户在输入文本时的想法非常重要,因此应该捕获退格键、按键等笔划。一旦用户单击提交按钮,管理员应该能够“播放”操作并查看用户在输入文本时的进度(类似于观看视频)

什么是 asp.net mvc 或 webforms这样做的方法?

On one of the pages, there is a need for me to add a textbox in which the user types in text. It is important for us to capture what the user is thinking while he's typing in the text, so strokes such as backspace, keys should be captured. Once the user clicks on the submit button, the administrator should be able to 'play' the actions and review how the user progressed while he was typing in the text (similar to watching a video)

What would be the asp.net mvc or webforms way of doing this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

揪着可爱 2024-10-26 14:44:07

考虑另一种非控制方法,或者将其包装到新的控制中。

Consider another non-control approach, or wrap this into your new control.

尴尬癌患者 2024-10-26 14:44:07

我不知道是否有一个自定义控件已经做到了这一点,一般来说,我认为您可以通过这种方式实现您的需求:使用 ClientSide OnKeyPress 事件保存所有按键,将所有按键代码放入列表中,当用户单击提交时将此列表传递给服务器端代码,然后您可以简单地以相同的顺序重新应用所有这些更改,这就是您想要播放的视频:)

I do not know if there is a custom control which already does this, in general I think you could implement your need in this way: save all key press with ClientSide OnKeyPress event, put all the key codes in a list, when user clicks submit pass this list to the server side code then you can simply re-apply all those changes in the same order, this is the video you wanted to play :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文