answersLogoWhite

0


Best Answer

You cant you have to use php or javascript.

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you pass table values from one page to another using HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How the data is viewed in a JSP in the form of table?

You can display data in Tabular format in a JSP page using the HTML <Table> Tag. You can even assign dynamic values to the table using JSP Scriptlets. <% %>


How do you create homepage or web page from event in table format using HTML?

Homepage can be created using HTML or various other languages. <table> can be used to create tabular format in HTML.


Program for create a student detail in a table using HTML?

Oracle is a great program for creating a student detail in a table using HTML. One can even use a word processing platform too.


How do you print an HTML table using PHP?

It is really simple to print an HTML table in PHP, all you have to do is the following: <?php print "<table>"; print "<tr>"; print "<td>hello</td>"; print "</tr>"; print "</table>"; ?>


Can you able to create table using css?

You can style a table in CSS, HTML is what you would use to create it though.


How do you place tables in CSS side-by-side?

Try using float:right; on the second table to get it to the right of the first table. You could also use the position attributes. Another thing to do to put tables side by side by just using HTML, is to put the two tables into another table. So you would have a main table with one row and two cells, with a table in each of those two cells.


How will you pass values from HTML page to the servlet?

we are passing values from the HTML to the Servlet by using HTML controls. ex:name,password.......... In servlets we have one method for getting the values from HTML is getParameter() example: String s1=req.getParameter("T1"); String s2=req.getParameter("T2"); in above example T1,T2 are the names of the HTML controls, String is a class and req is the object of the HttpServlet.


Where is the caption for a table placed in HTML?

The caption will appear at the top by default. You can change that by using the align attribute in it, like using align="bottom" to put it below the table.


Left align table HTML?

I believe you can only align things in CSS. Using CSS left-aligning the table would require doing this:YOUR TABLE HEREThen in the part you would write this:#table{text-align: left}If you didn't get what I just said I suggest going to W3schools.com and going to the CSS tutorial.


How do you use border in HTML?

Border can be an attribute in html. For example, in the table tag. This will put a border around the table.As another example, it can be used in the img tag.


What is a table layout?

The Table Layout property helps in setting the layout type for a table in HTML. There are different property values for Table Layout such as Fixed, Auto and Inherit. Example table { table-layout:inherit; } In the above example the value inherit specifies that the value of the table-layout property should be inherited from the parent element.


What attribute of the table tag controls the table alignment?

The attribute the controls the alignment of a table is the "align" attribute. It's possible values are left, right, and center. This attribute sets the alignment of the table in relation to the rest of the document. <table align="center"> .... </table> This attribute was deprecated in the HTML 4.01. That means that you can use it in HTML 4, and expect it to work in the browsers, but there are better ways of achieving your goal. (CSS) If you're using HTML 4.01 Strict as your doctype, then use of align is obsolete (meaning the browsers no longer have to support it and its use is prohibited.) The same goes for XHTML 1.0 Strict, and the current draft of HTML 5. Instead, use CSS margins and floats.