Hello Everyone,
in my mvc2 application i have an action link like
<%=Html.ActionLink("dash.board", "Index", pck.Controller, new{docid ="",id = pck.PkgID }, new { @class = "here" })%>
docid is set to empty string because i want to clear ambient value of docid that is present in request context. i have gone through a lot of material on internet and even tried docid=String.Empty but it does not solve the problem and gives me url like /controller/action/id?docid=x. i also write a routeconstraint as suggested here but it did not solve the problem either. plz suggest me a way to clear those route values comming from request context with html.actionLink. i don't want to use html.routeLink
any suggestions will be highly appreciated regards adeel