I am having following action link:
<%= Html.ActionLink(\"Check this\", \"Edit\", \"test\",
new { id = id }, new { style = \"display:bloc
Pass Query String By this way
@Html.ActionLink("Delete Record", "Home", "Delete", new { id=Id},null)
By above code you will get the url like(Suppose Id=1): /Home/Delete/1
and if you want to add more parameters to query string then:
@Html.ActionLink("Delete Record", "Home", "Delete", new { id=Id, Name=name},null)
By above code you will get the url like(Suppose Id=1 and Name=India) :
/Home/Delete/1?Name=India