English 中文(简体)
ASP.NET MVC - Adding querystring “length=” to ActionLinks?
原标题:ASP.NET MVC - Adding querystring "length=" to ActionLinks?

我有几处行动链接,显示控制者名称的特性,在作此补充时,会得到长篇的钥匙/价值。 如何消除这种情况?

最佳回答

在座各位,你很可能使用Html的错误超载。 行动链接,并增加路线参数,而不是超文本特性。 在你确定超文本属性之前,你需要增加一个作为第四个参数的NCL。 类似:

 Html.ActionLink("Title", "Action", "Controller", null ,new { title = "Title"} )

如果是这样的话,就把你们的法典放在首位。

问题回答

你们需要在htmlattributes之前贴上额外的空物体参数,像我头顶部这样。

 html.actionlink("a","b","c",new {},new {@class = "d"})

检查你是否使用右上载重机。 行动链接。

由于他们拿到任何物体,甚至匿名物体,并且视你超负荷使用这些物品而将其转化为路面值字塔或html特征。 既然这样的话,如果你要说这两点,要告诉你,你是否使用正确的超负荷,那么就将进行并汇编罚款。

如果你走过路,

确保将htmlAttributes设定为null

 Html.ActionLink("Title", "Action", "Controller", new {}, null )

选择了<代码>AcitonLink的错误超载。





相关问题
WebForms and ASP.NET MVC co-existence

I am trying to make a WebForms project and ASP.NET MVC per this question. One of the things I ve done to make that happen is that I added a namespaces node to the WebForms web.config: <pages ...

Post back complex object from client side

I m using ASP.NET MVC and Entity Framework. I m going to pass a complex entity to the client side and allow the user to modify it, and post it back to the controller. But I don t know how to do that ...

Create an incremental placeholder in NHaml

What I want to reach is a way to add a script and style placeholder in my master. They will include my initial site.css and jquery.js files. Each haml page or partial can then add their own required ...

asp.net mvc automapper parsing

let s say we have something like this public class Person { public string Name {get; set;} public Country Country {get; set;} } public class PersonViewModel { public Person Person {get; ...

structureMap mocks stub help

I have an BLL that does validation on user input then inserts a parent(PorEO) and then inserts children(PorBoxEO). So there are two calls to the same InsertJCDC. One like this=>InsertJCDC(fakePor)...

ASP.NET MVC: How should it work with subversion?

So, I have an asp.net mvc app that is being worked on by multiple developers in differing capacities. This is our first time working on a mvc app and my first time working with .NET. Our app does not ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

热门标签