My software (MANASYS Jazz, https://jazzsoftware.co.nz/) is distributed with ClickOnce. I have created the latest build on my laptop (W10), and download works perfectly there, with the software being downloaded and installed. I get sent an email that there has been a download. However with my new PC (W11), when I click the download nothing happens except that I get the email.
Both computers are using Edge, Edge version is 99.0.1150.36 (Up to date), and edge://flags/#edge-click-once shows that ClickOnce is enabled.
The ASP.NET code initiating the download is
Dim StartupString As String = URLBase & Folder & "Jazz.application?" & QStr
SendEmail("MANASYS Jazz Download, Userid=@Userid", StartupString)
Response.Redirect(StartupString)`
If I run this from Visual Studio and pause on the Response.Redirect, I can copy/paste StartupString into the browser and click it: with my W10 laptop this downloads the software normally, with by W11 PC this does nothing.
How do I fix this?