form action doesnot work??
Hi
I tried to post a form to another form.. but the form is not submitted to the form specified in the action property..
Eg. In webform2.aspx
<form method="post" action="webform3.aspx">
but the form is submitted to webform2.aspx??
wot to do if i need to submit to a different form??
if i cant submit to a different form, then why is the action attribute allowed in form element??
thanks
Akalya
posting a form and getting values in diff form without using cookies or session
Hi
Thanks for ur reply...Wot u say is to assign the values of all the form values to cookies or session variables and then redirect to the form i want to post it to..
But cookies cannot be used since the user may be disabled cookies.. disabling cookies will also prevent using session variables since sessionid is stored in the client machine..
Is the only way to send the form variables in the form of querystring??
Akalya
no.. it works for posting to the same form only
Hi
wot u did is posted to the same form.. wot do u do to post it to a diff form??
u cannot access this way?.. the only soln is to redirect and use session/Cookie variables or redirect to a page with query string attached.. Am i right
thanks