Unfortunately, the modification of the web designer in this direction is not planned. You can modify the localization file, it stores the name of the data sources (in the Database section).
To turn off all services you can use the following code:
Code: Select all
foreach (StiService service in StiConfig.Services)
{
if (service is StiDataAdapterService) service.ServiceEnabled = false;
}
Thank you.