In my database table I have one column with the name ActionName.
This ActionName may contain action name with query string or without it.
I have a value like this: Customer?Start=New
In View I have actionlink which is using this model column.
When I click on this link, it gives error:
A potentially dangerous Request.QueryString value was detected from the client(?)
I tried using attribute [ValidateInput(false)] in action method and also [AllowHTML] in model, but still this error is shown.
How to safely pass query string parameter from database?