In the WebForms application, ASP has such an address:
http://localhost:44444/User.aspx?u=1
The application uses the ID from the database by default as a field supported in the address
How to get down to the issue of replacing the current field?
In the database I added a column with UUID and I would like it to be used when displaying the URL
An example where a page from the above address is opened:
<asp:HyperLinkField DataNavigateUrlFields="UserID"
DataNavigateUrlFormatString="User.aspx?u={0}" DataTextField="LoginName"
HeaderText='USERNAME'>
</asp:HyperLinkField>