1

I am developing a click once aplication. I need to pass some values in the url to the application.

I referred this article Retrieve Query String from Click Once to pass and retrieve the query string values.

How can I pass and debug these query string values in Visual Studio 2008?

Any help much appreciated!

Thanks.

Bhaskar
  • 1,680
  • 7
  • 26
  • 40

1 Answers1

0

For passing parameters, Go to Project Properties|Publish|Options. Enable "Allow URL parameters to be passed...." there. For including parameters, use Mage to change the deployment provider URL once you publish the manifests.

Once the above is done, publish the files on a Test URL using "Debug" build configuration. Once you install the application from there, start it and attach .NET debugger to that process. That way you can debug your deployment

-- Devvrat