0

I have an ASP.NET website hosted on Rackspace Cloud Sites.

I have some C# code running which loops through a text file and inserts the records to a SQL Server website. Currently I have this code running and the records are being uploaded, but I would like to stop the upload.

I tried removing the web.config from the website (as suggested by a Rackspace rep) but I still see the records being uploaded in the database.

Is there a way for me to stop the code from running?

Thanks.

Rivka
  • 2,172
  • 10
  • 45
  • 74
  • Ask them to recycle your AppPool. – vcsjones Feb 12 '13 at 16:55
  • @vcsjones They said that would stop if for the time it's recycling, but the processes would resume afterward. – Rivka Feb 12 '13 at 17:00
  • @vcsjones I guess that rep was wrong - called again and asked to recycle it and it worked. Thanks. (Add your comment as answer so I can mark it.) – Rivka Feb 12 '13 at 17:04

1 Answers1

1

If you ask them to Recycle your AppPool, that should stop the processing.

vcsjones
  • 138,677
  • 31
  • 291
  • 286