0

this is the output:

http://localhost:50015/localhost:50015/CustomerJSON/getAutocomplete?&field=Id&field=Name&search_var=term&search_field=Name&json_key_prop=id&json_value_field=Id&json_key_prop=label&json_value_field=Name&json_key_prop=value&json_value_field=Name&term=a
400 (Bad Request)

this is the error:

A potentially dangerous Request. Path value was detected from the client (:)

I use a design pattern from my company, they have a framework for jquery and then this happens when I create an autocomplete. Has anyone of you ever got this kind of error?

Jan Sršeň
  • 1,045
  • 3
  • 23
  • 46
  • yes, there is a duplicate URL.. but i dont remember if i ever put a second URL, that is just appear when i create my autocomplete from my framework – droped box Sep 18 '18 at 06:29
  • possible duplicate: https://stackoverflow.com/questions/33257811/getting-a-potentially-dangerous-request-path-value-was-detected-from-the-client – Gauravsa Sep 18 '18 at 06:39

1 Answers1

1

You seem to have a problem with your address: the localhost:50015 appears twice in a row. The second part with the : causes the error.

Turbofant
  • 517
  • 11
  • 24