Hello
I am attempting to compile a small project via the command prompt.
In C:\Windows\Microsoft.NET I have two Framework folders, Framework and Framework64 and each comprises an executable file called aspnet_compiler. After precompilation, I would then hope to upload it through third-party software to the server provided by
my Web hosting service.
So far, this is what I have in command prompt:
C:\Windows\Microsoft.NET\Framework64\v4.0.30319>
As I understand it, I need to navigate to the folder that contains my files (aspx, aspx.vb, and Web.config). I need to create a 'targetDir' to house my compiled page, so on my C drive I have created a folder called myForm. I also wish to be able to update
the file and think I need to add a '-u' in the command line for that purpose. So I type in the location of my project:
C:\Windows\Microsoft.NET\Framework64\v4.0.30319>aspnet_compiler -p C:\Users\Steve\Do ...
Go to the complete details ...