i was debugging a line of code:
SqlDataSource ds = new SqlDataSource(cs.ProviderName, cs.ConnectionString, selectCommand);
and a Microsoft EULA dialog box popped up:
After declining it, i ended up debugging something:
i don't mind accepting EULA's i won't abide by, but i'm concerned that the modal dialog will popup, and stop, my ASP.net web-server.
Will this modal Microsoft EULA popup on my web-server? Is Microsoft guaranteed to have architected their "accept on demand" license agreements so they will not try to show a GUI dialog if it's not running on an interactive session?
That's a debugger popup, caused by stepping into the reference source.
Declining it will show you disassembly instead of the original Microsoft source code.
If you install Visual Studio and run the debugger on your server, it will pop up.