What is the .Net equivalent of a JSP page?
+7
A:
an ASPX page
(asp for ASP classic)
Code can be placed into an ASPX page which is then composed into magic that's rendered by the client. There are also code files behind the ASPX pages which are .vb/.cs (Visual Basic and C# respectively) that pass data to the ASPX pages.
Really depends on what you're question is regarding for a more detailed answer.
MunkiPhD
2010-05-13 16:26:37
ASP.net classic?
Chris Dunaway
2010-05-13 19:19:28
We all have our moments, lol - I fixed it.
MunkiPhD
2010-05-13 19:36:58
+3
A:
My guess is the closest thing is ASP.NET, the .NET replacement of the original ASP page. Do note that ASP.NET is not an exact replication of servlets though.
Simon
2010-05-13 16:28:51
+1
A:
There are JSP and Servlet in J2EE world so to make one by one analogy with these, I would say
JSP <-> .aspx Servlet <-> .cs
Rebol Tutorial
2010-05-13 16:36:34