william
william

Reputation: 7664

debugger option in visual studio 2005

I am developing a asp.net website and need to add validator for multiple textboxes. I googled it and found a custom validator.

I add this as a project and do things.. and the website is running fine.

But whenever I run the project with Start Debugging icon, the following message appears. alt text

I can click OK and continue but this has become really annoying.. Any idea not to appear this?

Upvotes: 2

Views: 1291

Answers (2)

viggity
viggity

Reputation: 15237

Go to Tools > Options > Debugging > General > Enable Just My Code > Warn if no user code on launch

enter image description here

Upvotes: 8

Jacob
Jacob

Reputation: 78848

It tells you at the bottom of the dialog how to turn off the warning:

To suppress this message, disable the 'Warn if no user code on launch' debugger option.

Upvotes: 1

Related Questions