I’m trying to create an ActionLink to export data from a grid. The grid is filtered by values from the query string. Here’s an example of the url:
http://www.mysite.com/GridPage?Column=Name&Direction=Ascending&searchName=text
Here’s the code to add my ActionLink to the page:
@Html.ActionLink("Export to Excel", // link text
"Export", // action name
"GridPage", // controller name
Request.QueryString.ToRouteDic(), // route values
new { @class = "export"}) // html attributes
When the link is displayed, the url is this:
http://www.mysite.com/GridPage/Export?Count=3&Keys=System.Collections.Generic.Dictionary%602%2BKeyCollection%5BSystem.String%2CSystem.Object%5D&Values=System.Collections.Generic.Dictionary%602%2BValueCollection%5BSystem.String%2CSystem.Object%5D
What am I doing wrong?
Try this:
I’m not sure this is the cleanest or most correct way but it does work
I didn’t use your extension method. You’ll have to reintegrate that:
then
Results in
with class export