I have html code to POST an advanced search to _edit.asp. If invoke from a window already logged in, things work fine.
However, if I'm not logged in, I'm prompted for the login. After I login in, I;m redirected to the main menu - not to the results of the advanced search.
Is there a way I can do this?
The reason this is a problem is that I want to be able to click on a URL in an e-mail message, and go directly to an edit or list screen containg th results of the search specified in URL flags.
Below is an excerpt showing how I perform the post.
Thanks!
<form method="POST" action="LeadMan/Leads_edit.asp" name="editform">
<input type=hidden id="editid" name="editid" value="bennettsw@aol.com" >
<input type=hidden id="NeedQuotesEmail" name="NeedQuotesEmail" value="True">
<input type=hidden id="action" name="action" value="edit">
</form>
<a href="#" onClick="document.forms.editform.submit(); return false;">Click to edit record</a>