Hello
I originally did my small project in ASP.NET 4.5 but when I tried to compile it, Command Prompt told me that it was created at a higher level than the 'target'.
I presume 'target' refers to my Web hosting server. How it could know that my server was, indeed, ASP.NET 4.0, I do not know, but the folder destination of
my compiled files was empty.
So, I am considering a new ASP.NET project in 4.0 and basically copying and pasting the 4.5 files into my new 4.0 project. Is that the right thing to do?
Also, I use Site.master nowhere in this project. Along the top of my aspx files, I typically have this with no reference to Site.master:
<% Page Language="VB" AutoEventWireup="false" CodeFile="index.aspx.vb" Inherits="index %>
but do I save it, compile it, and upload it to my server (Web hosting) along with the other files and folders, or do I delete it befo ...
Go to the complete details ...