I have designed few JSP forms and I am in need of integrating any web template in that JSP form.
I am a beginner in JSP and I am completely unaware of such web templates usage in JSP.
Any sort of explanation/sources that would help me in proceeding with my task would be of great help.
Thanks everyone in advance. Waiting for your helpful replies.
UPDATE
Also let me know model web templates that can be downloaded from net. My ultimate aim is to present my JSP form in a good way.
This is completely unrelated to JSP. JSP just offers a way to control the HTML/CSS/JS output programmatically using Java. All the browser gets and understands is HTML/CSS/JS. You control markup with HTML. You control style (look'n'feel) with CSS. You control progressive enhancements with JS.
So, the real answer is: use CSS.
References:
CSS tutorial
CSS reference
CSS best practices
CSS web design for Dummies
Related questions:
What's the best CSS framework?
Related
How to make HTML forms interactive? Which techniques are best for interactive forms? Any good suggestion where I can learn web forms? I am in learning process.
A web form is already an interactive piece of content on the page. The user interacts with it. If you want to style it then you use CSS or JavaScript/JQuery. Alternatively, use Bootstrap to style the forms and give them glyphicons and validation. Forms are fairly complex in my opinion. So just stick with the basics until you can at least understand how they are working. Use resources like W3Schools, Mozilla Developers Network (MDN), or places like CodeAcademy, Lynda.com, to learn more.
You can create HTML form more dynamically using CSS,Javascript as well as using the Bootstrap.It will help you to create a HTML Form with several Features like
validation
Designing
Responsive web Pages etc.
You can go with this link here you can easily get all information about Page Designing..
https://www.w3schools.com/html/
We are working on a website project. Most of the pages on the website are HTML based. There is an order form that is designed using ASP.NET.
Since I am new to ASP.NET, I wish to know if it is possible to integrate the HTML and ASP together in a single website. For example, if I click on a tabbed menu option in the HTML page, I want the ASP to open preferably following the same layout of the existing HTML page.
Yes its simple. ASP.Net just uses html. Any links css etc. should work with with both.
Think of ASP.NET being an extension of HTML for ease of creating a dynamic website.
ASP.NET is a server side language for generating HTML. So yes, this is possible.
Before you start on this project it would be worth learning the basics. There's loads of free tutorials online.
ASP.NEt only uses HTMl to Load the Content in WebBrowser. So you should able to integrate with Asp.Net. Also I think you are talking about the Same Layout for new Aspx. in Asp.net we Uses MasterPage, ContentPlaceHolder.
Actually I'm working on project where I need to convert a HTML website into Sitecore (CMS) template.
I'm really new to the Sitecore and I'm going through couple of docs but I'm sure how to proceed with any help would be very much appreciated..
You can review high-level details on Launch Sitecore:
Getting Started with Presentation Elements
i want to ask you one question.
it can be seemed stupid.
but it is interesting for me.
is there any methods to use html and/or css to design windows application forms.
There is a technology called WPF(Windows Presentation Foundation) in .NET platform,that uses a mark up language called XAML(instead of HTML) for mark up and an styling mechanism like css.but not exactly same as the html and css.
You can use resource files to handle your resource in winforms but real answer would be
No there isn't, But its a good idea that's what motivated to develop WPF.
To learn it Go here
How can we create menubar in jsp. We have to use html commands, or is there any other method? If anybody can give me any web address where i can find the turorial for this. I have searched the web but unable to find any good answer.
Thanks
First thing you need to realize that JSP is just a Java based view technology which enables outputting HTML/CSS/JS dynamically and that HTML is a markup language which can instruct the webbroser how to display the page elements.
As to your problem, you need the HTML <ul> element to represent a list. Then you can apply a good shot of CSS to style it the way you want. This is in HTML/CSS world also called "Suckerfish dropdowns".
Since the question is too broad, best I can do is to recommend you the separate concepts "HTML" and "CSS" properly and give you some tutorial links.
W3schools HTML tutorial/reference
W3schools CSS tutorial/reference
Alistapart - Suckerfish dropdowns
HTML dog - Suckerfish dropdowns
Related questions:
Where to start from in web development?
Java web development, what skills do I need?