• lime!
    link
    fedilink
    English
    855 days ago

    how tf would a missing semicolon result in a http server error

    • @[email protected]
      link
      fedilink
      English
      595 days ago

      In ASP.NET applications, specifically in ASP.NET Web Forms and ASP.NET MVC (pre-Core), the compilation process is dynamic and happens at runtime if source files like .cshtml, .aspx, and .cs files are present on the server.

      ASP.NET uses just-in-time (JIT) compilation for views (.cshtml, .aspx, .ascx, etc.) and sometimes for code-behind files (.cs). When a request hits a page, ASP.NET dynamically compiles these files into temporary assemblies.

      If there’s a syntax error, missing semicolon, incorrect type, or any other compilation issue, the process will fail and throw a 500 error.

      • lime!
        link
        fedilink
        English
        124 days ago

        why would you use asp in an introductory course

        even if you have like a student learning platform so they don’t have to install anything, surely it would wrap the code that’s submitted so it doesn’t crash the application

        • @[email protected]
          link
          fedilink
          English
          114 days ago

          my guess is he had all the boilerplate written, and was using a single line or two of “working code” to show what the technology was capable of

          but it’s 4chan greentext so it could be fake and gay

      • @Kcap
        link
        34 days ago

        Yeah, what he said.

      • lime!
        link
        fedilink
        English
        54 days ago

        why would you demo a for loop with a web server

        • @[email protected]
          link
          fedilink
          114 days ago

          For the same reason our OS memory management class was in Java, a language without pointers, because some idiot decided all courses had to be standardized on the same language because the industry says they need people who know that language now.

    • unalivejoy
      link
      fedilink
      English
      205 days ago

      File fails to compile, web server tries to run the file, error.

      • lime!
        link
        fedilink
        English
        14 days ago

        if your server runs user-submitted code server side, that’s a paddlin

        • @[email protected]
          link
          fedilink
          34 days ago

          It never said user code.

          This could as well be an intro to php and the server may be set to not show errors and instead just fail.

          The lecturer then writes some code, forgets a semicolon and gets a 500.

      • Echo Dot
        link
        fedilink
        -14 days ago

        If the file failed to compile the server wouldn’t execute it because a file wouldn’t be created. A compile error stops the process, It doesn’t result in a corrupted output, since that would be really stupid.