You should be able to use query string like normal...
http://someserver/folder/some.application?a=b&c=d&e=f
The trick is how your app looks for those arguments (plus it must have url arguments enabled in the publish properties) - you should check System.Deployment.Application.ApplicationDeployment.IsNetworkDeployed
- if set, look at either AppDomain.CurrentDomain.SetupInformation.ActivationArguments.ActivationData
(the first item in the array) or (simpler) the ActivationUri
of the current deployment.
Marc Gravell
2009-06-15 08:25:22