我有一个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(“文本”)我一定要改变我的Global.asax.cs中图路线?
问 :我怎样才能从我的剪贴板中的数据,从我的控制器的方法?