Hi I have a table that was created in javascript, what I need to know is how to pass the values in row 1 or 2 into a aspx page using javascript with the click of a button: here
To send big amount of data you can try this:
textarea
/text
field (not neccessary) in this form Note, that javascript will escape data in this form. To unescape it use unescape() function.
You have a few options: You could save the data in a cookie for re-use later, you could pass the data to the next page as a series of GET
variables, or you could load the next page using AJAX so that your variables remain available.
Since you're using ASP, you could do something like this:
function Redirect() {
window.open ("http://10.19.13.67/ReworkLabels/Default.aspx?myVariable=" + myVariable,"my window");
return false;
}