Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Blazor route with encrypted parameters

How can I make my Blazor application to receive the encrypted parameters that contain the encoded special characters such as "/" and "+".

My screenshot can be found here

How should I configure the Blazor parameters, so that they are split and translated correctly?

like image 382
Marvyn Harryson Avatar asked Feb 13 '26 04:02

Marvyn Harryson


1 Answers

How can I make my Blazor application to receive

First, the sending application has to format it properly for URL use. And you have to know that formatting.

In .NET you can use Uri.EscapeDataString() and then Uri.UnescapeDataString() in the Blazor page.

like image 135
Henk Holterman Avatar answered Feb 15 '26 07:02

Henk Holterman