我希望能够将我的 javascript 函数的字符串输出作为参数传递给我的 MVC 4 Razor Url Action,它本身作为自定义属性传递给输入元素。这是我的视图文件中的剃刀:
@Html.TextBoxFor(model => model.SomeProperty, new{data_autocomplete = @Url.Action("SomeAction","SomeController", new { someParameter= "here I want the string output of my javascript function" })})
我怎么可能做到这一点?