Reputation: 443
I'm new to ASP.NET, and I came across these two different extensions while browsing around. What's the difference between them?
Upvotes: 32
Views: 62855
Reputation: 473
Upvotes: 11
Reputation: 13793
To oversimplify the answer, its the .net framework.
You can do a quick search to find tons of webpages that specify the diffrences. I found this on SO Difference between asp and asp.net
Upvotes: 1
Reputation: 171351
One is Classic ASP (.asp
) and the other is ASP.NET (.aspx
).
Note that this is how these extensions are handled by default. You can remap the extensions to be handled in different ways in IIS.
Upvotes: 32