I was wondering if in Spring MVC I can add server controls in my jsp pages, like I do in ASP.Net with <asp:textbox>
for example.
All the examples I see on the Internet use javascript controls...
I was wondering if in Spring MVC I can add server controls in my jsp pages, like I do in ASP.Net with <asp:textbox>
for example.
All the examples I see on the Internet use javascript controls...
JSP has the concept of "JSP Tags" which are similar in functionality to ASP.NET WebForms Controls, but they have their differences.
I'm not familiar enough with JSP or Spring to enumerate the differences or similarities, but I can only suggest you give this page a read: http://www.tutorialspoint.com/jsp/jsp_standard_tag_library.htm
Well, there are a lot of JSP tags to render HTML controls, usually they are bundled with web framework like struts / spring mvc. There is also JSF technology which provides component model to render HTML pages and interact with server side model.
However, main purpose of spring is to provide DI container for easier development and component management, but there is also integrated web framework ( though my personal choice would be struts with nanocontainer)