![]() |
| |||||||
| Sponsored Links |
![]() |
| | LinkBack | Thread Tools | Display Modes |
|
#1
| |||
| |||
| i, I have a page called one.asp where there are 7 hidden fields which hold values in them when a user opens up one.asp i want to redirect them to a different page and pass the values in the hidden fields i dont want to pass the values through querystring which can be visible in the url is there a way of sending the values to the new page either through javascript or through asp todd Last edited by richyrich; May 6th, 2008 at 11:20 AM. |
| Sponsored Links |
|
#2
| ||||
| ||||
| So basically, you're looking for the form to auto submit when they view the page? Code: <form method="post" action="pagetotransferto.asp" name="frm">
<input type='hidden' Value='this is hidden'>
</form>
<script>
document.frm.submit();
</script>
__________________ jmurrayhead If you agree with me... click the icon! If my post solved your problem, click the button in the lower right-hand corner of the post.If you like it here...throw us a few bones to help support us. Join our Folding team: DeveloperBarn Folding |
|
#3
| |||
| |||
| hi, thanks for your reply. It works out . Thank you so much todd |
![]() |
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| go page to page questionaire app | peebman2000 | .Net Development | 3 | April 26th, 2008 04:42 PM |