Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 149591
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T09:09:18+00:00 2026-05-11T09:09:18+00:00

I want to have different sorting and filtering applied on my view I figured

  • 0

I want to have different sorting and filtering applied on my view I figured that I’ll be passing sorting and filtering params through query string:

@Html.ActionLink('Name', 'Index', new { SortBy= 'Name'}) 

This simple construction allows me to sort. View comes back with this in query string:

?SortBy=Name 

Now I want to add filtering and i want my query string to end up with

?SortBy=Name&Filter=Something 

How can I add another parameter to list of already existing ones in ActionLink? for Example:

user requests /Index/ 

view has

 @Html.ActionLink('Name', 'Index', new { SortBy= 'Name'}) 

and

 @Html.ActionLink('Name', 'Index', new { FilterBy= 'Name'}) 

Links: The first one looks like /Index/?SortBy=Name and The second is /Index/?FilterBy=Name

I want when user pressed sorting link after he applied some filtering – filtering is not lost, so i need a way to combine my params. My guess is there should be a way to not parse query string, but get collection of parameters from some MVC object.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T09:09:18+00:00Added an answer on May 11, 2026 at 9:09 am

    so far the best way I figured out is to create a copy of ViewContext.RouteData.Values and inject QueryString values into it. and then modify it before every ActionLink usage. still trying to figure out how to use .Union() instead of modifying a dictionary all the time.

    <% RouteValueDictionary   tRVD = new RouteValueDictionary(ViewContext.RouteData.Values); %>  <% foreach (string key in Request.QueryString.Keys )     {          tRVD[key]=Request.QueryString[key].ToString();     } %>  <%tRVD['SortBy'] = 'Name'; %>                 <%= Html.ActionLink('Name', 'Index', tRVD)%> 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have 2-3 different column names that I want to look up in the
I have several web pages on several different sites that I want to mirror
I have a class that's IEnumerable<T> where I want to have different properties that
I want my emacs buffer to have a different name than the file name.
I have databases with different collations. I want to be able to script out
I want to import an oracle dump into a different tablespace. I have a
I want to have a select-only ComboBox that provides a list of items for
I want to have a text box that the user can type in that
I want to have a PHP script send a XML formatted string to another
I have 9 different ArrayList and I want to have a list of the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.