![]() |
Sergey Kornilov admin 5/12/2008 |
You need to explain what "Search by category" means and how it's different from Basic or Advanced search. |
S
|
simplem author 5/17/2008 |
I mean to say As you have catergrosed it in your many samples, like classifieds sample, it is classifieds by : |
![]() |
Sergey Kornilov admin 5/18/2008 |
You create a new project using Classifieds templates, proceed to the List page of 'main' table and double click on ListOnLoad event to see the code. Create a similar event in your project and adjust the code to match tables and field names. |
S
|
sfhussain 8/6/2008 |
You create a new project using Classifieds templates, proceed to the List page of 'main' table and double click on ListOnLoad event to see the code. Create a similar event in your project and adjust the code to match tables and field names. PS. If you need an urgent answer contact support team directly supplying your order number.
stSQL = "select problem from south group by Problem" Set data = server.CreateObject("ADODB.Recordset") data.open stSQL, dbConnection while not data.eof problem = replace(data("problem")," ","+") message = "<a href=""south_list.asp?a=search&value=1&SearchFor=" & problem & "&SearchOption=Contains&SearchField=problem"">" & data("problem") & " (" & data("number") & ")</a> " response.write message data.MoveNext wend data.close |