AspNetCoreSecuritySamples icon indicating copy to clipboard operation
AspNetCoreSecuritySamples copied to clipboard

Proper use of `QueryString`.

Open MizardX opened this issue 4 years ago • 0 comments

If QueryString is empty, then PathString + QueryString + "&skip=1" becomes "/target/path&skip=1". If you instead do PathString + QueryString.Add("skip", "1"), it becomes "/target/path?skip=1".

MizardX avatar Oct 12 '20 15:10 MizardX