ASP application causing Error 500 and causing server to stop frequently

Anoj

The ASP application running on the sql server is causing to stop the IIS server very frequently. The cause it shows in the Error log is: "A significant part of sql server process memory has been paged out.This may result in a performance degradation."

Is there any tool which can identify the fault in the web application?

Anoj

I have found the cause to my problem. For each Url redirection, I used the syntax Response.Redirect("/NewPage.aspx"); and this would continue the process even after creating the child process. The fix was: Response.Redirect("/NewPage.aspx", false); This would terminate the process right after calling a child process. That saved a lot of memory used by each process!

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

ASP application causing Error 500 and causing server to stop frequently

From Dev

imagecreatefromstring is causing 500 internal server error

From Dev

PDOStatement::fetch causing 500 Internal server error

From Dev

imagecreatefromstring is causing 500 internal server error

From Dev

Cronjob causing 500 internal server error

From Dev

PHP use keyword is causing 500 server error

From Dev

Web Config Error Causing 500 Internal Server Error

From Dev

update-php class causing 500 internal server error

From Dev

Php file sometimes causing 500 Internal Server Error

From Dev

htaccess redirection causing 500 error

From Dev

htaccess redirection causing 500 error

From Dev

what is causing this server error?

From Dev

Why is this causing a server error

From Dev

Gulp - Error Causing Task to Stop

From Dev

Phpmailer causing internal error 500 with ajax

From Dev

PHP require causing HTTP 500 error

From Dev

static file issue causing django 500 error?

From Dev

ElasticSearch plugin causing server to stop in Grails 3.1.6

From Dev

ElasticSearch plugin causing server to stop in Grails 3.1.6

From Dev

What's causing 500 Internal Server Error due to localhost:9000 being hit in bot framework?

From Dev

Why is my Apache2 .htaccess file CORS header causing a 500 internal server error?

From Dev

Floating Action Button causing error and crashing application

From Dev

ClassCastException causing app to stop

From Dev

.htaccess Causing Internal / Forbidden Server Error

From Dev

.htaccess Causing Internal / Forbidden Server Error

From Dev

Multi-thread UI causing WPF application to stop working

From Dev

.htaccess - Rewriting requests for specific website to a subdirectory causing 500 error

From Dev

$.ajax anonymous function causing 500 error on Google App Engine

From Dev

server sent events (eventsource) with standard asp.net mvc causing error

Related Related

  1. 1

    ASP application causing Error 500 and causing server to stop frequently

  2. 2

    imagecreatefromstring is causing 500 internal server error

  3. 3

    PDOStatement::fetch causing 500 Internal server error

  4. 4

    imagecreatefromstring is causing 500 internal server error

  5. 5

    Cronjob causing 500 internal server error

  6. 6

    PHP use keyword is causing 500 server error

  7. 7

    Web Config Error Causing 500 Internal Server Error

  8. 8

    update-php class causing 500 internal server error

  9. 9

    Php file sometimes causing 500 Internal Server Error

  10. 10

    htaccess redirection causing 500 error

  11. 11

    htaccess redirection causing 500 error

  12. 12

    what is causing this server error?

  13. 13

    Why is this causing a server error

  14. 14

    Gulp - Error Causing Task to Stop

  15. 15

    Phpmailer causing internal error 500 with ajax

  16. 16

    PHP require causing HTTP 500 error

  17. 17

    static file issue causing django 500 error?

  18. 18

    ElasticSearch plugin causing server to stop in Grails 3.1.6

  19. 19

    ElasticSearch plugin causing server to stop in Grails 3.1.6

  20. 20

    What's causing 500 Internal Server Error due to localhost:9000 being hit in bot framework?

  21. 21

    Why is my Apache2 .htaccess file CORS header causing a 500 internal server error?

  22. 22

    Floating Action Button causing error and crashing application

  23. 23

    ClassCastException causing app to stop

  24. 24

    .htaccess Causing Internal / Forbidden Server Error

  25. 25

    .htaccess Causing Internal / Forbidden Server Error

  26. 26

    Multi-thread UI causing WPF application to stop working

  27. 27

    .htaccess - Rewriting requests for specific website to a subdirectory causing 500 error

  28. 28

    $.ajax anonymous function causing 500 error on Google App Engine

  29. 29

    server sent events (eventsource) with standard asp.net mvc causing error

HotTag

Archive