how to make asp.net applications work without visual studio platform?

  • Thread starter Thread starter a budding altruist
  • Start date Start date
A

a budding altruist

Guest
i created a dynamic data website. and it takes a lot of space and slows the computer because of the visual studio platform(eating the RAM too).
 
Your site needs to be hosted on a Windows Server that supports .Net extensions. Without that you are stuck. Most hosting services charge a little more for Windows hosting over Linux because the O/S software costs more and it's more of a resource hog.

Your resource problem is probably due to:
1. Database accesses that require a lot of overhead,
2. Memory leaks in your custom code, or
3. Round-trips that are data-intensive.

Double-check your code before you blame the server ;)
 
Your site needs to be hosted on a Windows Server that supports .Net extensions. Without that you are stuck. Most hosting services charge a little more for Windows hosting over Linux because the O/S software costs more and it's more of a resource hog.

Your resource problem is probably due to:
1. Database accesses that require a lot of overhead,
2. Memory leaks in your custom code, or
3. Round-trips that are data-intensive.

Double-check your code before you blame the server ;)
 
Back
Top