I think you sort of mix up things here. EXE files these days are just Portable Executable (PE) containers and may contain native code or a .Net Assembly. Now DLL files can contain native code or a .Net Assembly too, and deploying your Web Application in the form of DLL files is a quite standard procedure in ASP.NET. So just because it's an EXE file it doesn't mean it is a native Windows executable binary.
Now I suppose you mean native applications. Native applications classically run in a CGI interface, and historically CGI launches a new process on each page request so there is quite some overhead on page requests, hence it is slow.
Now there is a CGI variation called FastCGI, which enables you to run native binary web applications in a way that there is no need to create a new process every time a page is requested. FastCGI is fast. In fact, a lot of the popular dynamic languages interface FastCGI, but there is nothing stopping you from interfacing FastCGI from your code.
Security is really not an issue, it is just a question of setting up the permissions on the host right. If your C process does not have permission to do nasty stuff, it doesn't matter if it is written in C, it won't be able to do so.
What would you gain by a C web application? One might be tempted to say that there is a performance gain. However, the general experience is that for web applications the main performance bottleneck is seldom the application code itself; it is more likely that you will have performance problems because of using the wrong data structures, excessive database usage, etc., stuff that doesn't have to do anything with your application being compiled to native binary.
What would you lose? A lot of time. Debugging allocation issues, memory leaks, synchronization, lack of available libraries, etc. Believe me, you just don't want to do it.
