我有一个 ASP.NET MVC 4 应用程序。
我想复制文本(来自 PDF)CTRL+C 并将其作为参数粘贴到控制器的方法中。
我的 webgrid 有一个带有 ActionLink 的列
grid.Column(" ", " ", format: @<a href="@Url.Action("Clipboard", "People", new { cbdata = window.clipboardData.getData('Text') })">Clipboard</a>),
...
[HttpPost]
public ActionResult Clipboard(string cbdata) // is string ok ?
{
//I'm doing something with my clipboard data ..
return View();
}
这部分不起作用:window.clipboardData.getData('Text') 我必须在 Global.asax.cs 中修改我的 MapRoute 吗?
问:如何通过控制器的方法从剪贴板中获取数据?