This topic is locked

How to get the URL of advanced search results page

7/5/2007 7:56:45 PM
ASPRunnerPro Tips and tricks
admin

Proceed to the Visual Editor and open advanced search page.

Switch to HTML mode and find the following code snippet:

<form method="POST" action="TableName_list.asp" name="editform">


and replace it with:

<form method="GET" action="TableName_list.asp" name="editform">


Build the project and run advanced search. Copy and paste the URL into your code.
To apply the same changes for ASPRunnerPro 6.2 build project, then open generated ..._search.asp fle, fidn and edit this line:

setArrElement contents_block,"begin","<form method=""POST"" "



Then run search and copy resulted URL.

D
dmulberry 3/25/2009

Is this still valid in ASPRunner 6.0, i did a find on the search page and do not see a form tag.
Nevermind I figured it out.

B
boater21 6/2/2010

What is the trick? I'm using ASPRunner 6.2, I need the search query, but can't find the FORM anywhere.



Is this still valid in ASPRunner 6.0, i did a find on the search page and do not see a form tag.
Nevermind I figured it out.

B
boater21 6/2/2010

I figured it out, but I didn't modify anything in ASPRunner. If you load up FireFox with Firebug and look at the "Net" tab, it will tell you what the entire URL is when you click on the Advanced Search page's search button. I was able to use that to post a link directly to the search results page.



What is the trick? I'm using ASPRunner 6.2, I need the search query, but can't find the FORM anywhere.