Writing C# like I write JSP/Tomcat?

nikhilhs

Newcomer
Joined
Feb 22, 2004
Messages
22
I've been using VS.NET for a while, but am unhappy with the way it does webapps. I'd like to write code that outputs plain HTML, and is somehow linked to a URL, like Tomcat/JSP does it. Is there a way to do this?

Thanks.

-NIck
 
The HTML outputed by ASP.NET is not standard HTML. It only works on IE. I want to write code that explicitly outputs HTML.

In Tomcat, there's an XML file that says url x goes to class y. Then the doGet function in class Y is called, and whatever it outputs is sent as the HTML page.
 
Back
Top