Click to See Complete Forum and Search --> : fgenerator
Ok, I'm still not sure this is possible but I'm going to ask anyway.
Is there a way to generate a link from a fourm? Instead of a copy paste code? After you hit submit. And stay on the same page?
Timbuck2
02-23-2003, 04:27 AM
possibly,
Try to explain what you want a little better.
Ok, it's basically a login bookmark. The drop down selects the domain and the user types in their info in another field, once submit is hit it generates a link that can be put in to the bookmarks.
Timbuck2
02-23-2003, 06:01 PM
I'm not sure of the best way for you . But
<form name="myForm" action="http://www.somewhere.com" method = "post" onSubmit ="return myForm_Submit()" >
in the preceeding form tag. You see onSubmit. note the return keyword. This means if the function returns false the form will not submit. if true it will.
If you set the action attribute to what you want it to be ( in the myForm_Submit() function )and then return true you should be all set, If I'm understanding your needs.