在C#中的TextBox中插入文件
我有一个“同意和条件文件( rtf 文档)”和/或一个“免责声明文件”要添加到我想添加到我的 MVC3 Web 应用程序中的文本框或文本区域。 我不知道该怎么做。我用谷歌搜索过但没有成功。
I have an "Agree And Conditions file ( rtf document )" and/or a "disclaimer file" to add to a textBox or Text Area that I would like to add to my MVC3 web app.
I don't know how to do that. I have google searched but without any success.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该避免使用文本框,而只在具有固定
高度
和垂直滚动的中显示内容。
然后只需添加
即可强制用户表示同意该声明。
当用户没有向下滚动 div 时,您始终可以禁用该
复选框
...我不喜欢它,但它在多个网站中反复出现。you should avoid text boxes and just show the content in a
<div>
with a fixedheight
and vertical scroll.Then just add a
<input type="checkbox">
to force the user say it agreed with the statement.You can always have that
checkbox
that could be disabled while the user did not scroll down the div... I don't like it but it appears over and over in several websites.