Hi folks,
I made a .NET Windows Forms application that I want to deploy using ClickOnce. However, I will need the application to retrieve the query string parameters passed to it.
I found this MSDN article and followed its directions (select the check box labeled Allow URL parameters to be passed to application), but it doesn't appear to work:
How to: Retrieve Query String Information in a ClickOnce Application
ApplicationDeployment.CurrentDeployment.ActivationUri is null when the application loads.
eg:
http://MyDomain.com/Sample/Sample.application?a=1&b=2
Note: I'm not asking about passing the query string parameters to the setup.exe installation file for the application to work the first time when it is installed. Just the passing of query string to the application.
Thanks for your help.
HappyCoder4U