![]() |
Sergey Kornilov admin 3/14/2008 |
You need to get ASPRunnerPro 5.2 which is the latest and greatest and don't have any of those issues. |
M
|
mastermax author 3/14/2008 |
I just downloaded the trial version of asprunner pro 5.2 (build 403) and vacation rental is not working.When i press build the pages and i want to see them in browser i get the main login page and when i click on log in as guest it says asp error happened (error message).Real estate project works fine. |
J
|
Jane 3/21/2008 |
Hi, ' Search By Number of Bedrooms set rstmp2 = Server.CreateObject("ADODB.Recordset") rstmp2.Open "SELECT Bedrooms , Count(bedrooms) as count FROM properties group by bedrooms;", dbConnection strMenu=strMenu & "<table width=150 border=0><tr><td align=left height=20 class=blackshade><Font face=Tahoma><b> Search By Bedrooms</b></Font></td></tr>" do while not rstmp2.eof Bedrooms = Replace(rstmp2("Bedrooms")," ","+") strMenu=strMenu & "<tr><td> <a href=properties_list.asp?a=search&value=1&SearchFor=" & Bedrooms & "&SearchOption=Equals&SearchField=Bedrooms><Font face=Tahoma>" strMenu=strMenu & rstmp2("Bedrooms") & " (" & rstmp2("count") & ")</font></a></td></tr>" rstmp2.MoveNext loop
' Search By Number of Bedrooms set rstmp2 = Server.CreateObject("ADODB.Recordset") rstmp2.Open "SELECT Bedrooms , Count(bedrooms) as scount FROM properties group by bedrooms;", dbConnection strMenu=strMenu & "<table width=150 border=0><tr><td align=left height=20 class=blackshade><Font face=Tahoma><b> Search By Bedrooms</b></Font></td></tr>" do while not rstmp2.eof Bedrooms = Replace(rstmp2("Bedrooms")," ","+") strMenu=strMenu & "<tr><td> <a href=properties_list.asp?a=search&value=1&SearchFor=" & Bedrooms & "&SearchOption=Equals&SearchField=Bedrooms><Font face=Tahoma>" strMenu=strMenu & rstmp2("Bedrooms") & " (" & rstmp2("scount") & ")</font></a></td></tr>" rstmp2.MoveNext loop
|