Get ready for BLACK FRIDAY shopping starting in

Forums

This topic is locked

Please help with ASP wild mask in file name

Posted 31 May 2006 03:18:22
1
has voted
31 May 2006 03:18:22 Dan Deniskin posted:
<b> Dreamviewer 8 / MS Access DB / </b>

I have following data base shema :

Filed1 Name: ID number
Field2 Name: Description

and folder [imagesmls] with images with file names : IDnumber_xxx_xx.jpg

those records not in database. I am using dreamviewer connection module with recordset and etc.
created table to show database records and images but there is question:

how can i use some kind of wild care which allows pull out images from image folder based on id number

&lt;img src="imagesmls/&lt;%=(Recordset1.Fields.Item("Field1".Value)%&gt;_101.jpg" width="115"&gt;

sample: http://luckymountainhome.com/rmls.asp

------------------------------------------------------------------------------

code:

&lt;%@LANGUAGE="VBSCRIPT"%&gt;
&lt;!--#include file="Connections/mlsdatasource.asp" --&gt;
&lt;%
Dim Recordset1
Dim Recordset1_numRows

Set Recordset1 = Server.CreateObject("ADODB.Recordset"
Recordset1.ActiveConnection = MM_mlsdatasource_STRING
Recordset1.Source = "SELECT * FROM residential"
Recordset1.CursorType = 0
Recordset1.CursorLocation = 2
Recordset1.LockType = 1
Recordset1.Open()

Recordset1_numRows = 0
%&gt;
&lt;%
Dim Repeat1__numRows
Dim Repeat1__index

Repeat1__numRows = 10
Repeat1__index = 0
Recordset1_numRows = Recordset1_numRows + Repeat1__numRows
%&gt;
&lt;%
' *** Recordset Stats, Move To Record, and Go To Record: declare stats variables

Dim Recordset1_total
Dim Recordset1_first
Dim Recordset1_last

' set the record count
Recordset1_total = Recordset1.RecordCount

' set the number of rows displayed on this page
If (Recordset1_numRows &lt; 0) Then
Recordset1_numRows = Recordset1_total
Elseif (Recordset1_numRows = 0) Then
Recordset1_numRows = 1
End If

' set the first and last displayed record
Recordset1_first = 1
Recordset1_last = Recordset1_first + Recordset1_numRows - 1

' if we have the correct record count, check the other stats
If (Recordset1_total &lt;&gt; -1) Then
If (Recordset1_first &gt; Recordset1_total) Then
Recordset1_first = Recordset1_total
End If
If (Recordset1_last &gt; Recordset1_total) Then
Recordset1_last = Recordset1_total
End If
If (Recordset1_numRows &gt; Recordset1_total) Then
Recordset1_numRows = Recordset1_total
End If
End If
%&gt;
&lt;%
Dim MM_paramName
%&gt;
&lt;%
' *** Move To Record and Go To Record: declare variables

Dim MM_rs
Dim MM_rsCount
Dim MM_size
Dim MM_uniqueCol
Dim MM_offset
Dim MM_atTotal
Dim MM_paramIsDefined

Dim MM_param
Dim MM_index

Set MM_rs = Recordset1
MM_rsCount = Recordset1_total
MM_size = Recordset1_numRows
MM_uniqueCol = ""
MM_paramName = ""
MM_offset = 0
MM_atTotal = false
MM_paramIsDefined = false
If (MM_paramName &lt;&gt; "" Then
MM_paramIsDefined = (Request.QueryString(MM_paramName) &lt;&gt; ""
End If
%&gt;
&lt;%
' *** Move To Record: handle 'index' or 'offset' parameter

if (Not MM_paramIsDefined And MM_rsCount &lt;&gt; 0) then

' use index parameter if defined, otherwise use offset parameter
MM_param = Request.QueryString("index"
If (MM_param = "" Then
MM_param = Request.QueryString("offset"
End If
If (MM_param &lt;&gt; "" Then
MM_offset = Int(MM_param)
End If

' if we have a record count, check if we are past the end of the recordset
If (MM_rsCount &lt;&gt; -1) Then
If (MM_offset &gt;= MM_rsCount Or MM_offset = -1) Then ' past end or move last
If ((MM_rsCount Mod MM_size) &gt; 0) Then ' last page not a full repeat region
MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
Else
MM_offset = MM_rsCount - MM_size
End If
End If
End If

' move the cursor to the selected record
MM_index = 0
While ((Not MM_rs.EOF) And (MM_index &lt; MM_offset Or MM_offset = -1))
MM_rs.MoveNext
MM_index = MM_index + 1
Wend
If (MM_rs.EOF) Then
MM_offset = MM_index ' set MM_offset to the last possible record
End If

End If
%&gt;
&lt;%
' *** Move To Record: if we dont know the record count, check the display range

If (MM_rsCount = -1) Then

' walk to the end of the display range for this page
MM_index = MM_offset
While (Not MM_rs.EOF And (MM_size &lt; 0 Or MM_index &lt; MM_offset + MM_size))
MM_rs.MoveNext
MM_index = MM_index + 1
Wend

' if we walked off the end of the recordset, set MM_rsCount and MM_size
If (MM_rs.EOF) Then
MM_rsCount = MM_index
If (MM_size &lt; 0 Or MM_size &gt; MM_rsCount) Then
MM_size = MM_rsCount
End If
End If

' if we walked off the end, set the offset based on page size
If (MM_rs.EOF And Not MM_paramIsDefined) Then
If (MM_offset &gt; MM_rsCount - MM_size Or MM_offset = -1) Then
If ((MM_rsCount Mod MM_size) &gt; 0) Then
MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
Else
MM_offset = MM_rsCount - MM_size
End If
End If
End If

' reset the cursor to the beginning
If (MM_rs.CursorType &gt; 0) Then
MM_rs.MoveFirst
Else
MM_rs.Requery
End If

' move the cursor to the selected record
MM_index = 0
While (Not MM_rs.EOF And MM_index &lt; MM_offset)
MM_rs.MoveNext
MM_index = MM_index + 1
Wend
End If
%&gt;
&lt;%
' *** Move To Record: update recordset stats

' set the first and last displayed record
Recordset1_first = MM_offset + 1
Recordset1_last = MM_offset + MM_size

If (MM_rsCount &lt;&gt; -1) Then
If (Recordset1_first &gt; MM_rsCount) Then
Recordset1_first = MM_rsCount
End If
If (Recordset1_last &gt; MM_rsCount) Then
Recordset1_last = MM_rsCount
End If
End If

' set the boolean used by hide region to check if we are on the last record
MM_atTotal = (MM_rsCount &lt;&gt; -1 And MM_offset + MM_size &gt;= MM_rsCount)
%&gt;
&lt;%
' *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters

Dim MM_keepNone
Dim MM_keepURL
Dim MM_keepForm
Dim MM_keepBoth

Dim MM_removeList
Dim MM_item
Dim MM_nextItem

' create the list of parameters which should not be maintained
MM_removeList = "&index="
If (MM_paramName &lt;&gt; "" Then
MM_removeList = MM_removeList & "&" & MM_paramName & "="
End If

MM_keepURL=""
MM_keepForm=""
MM_keepBoth=""
MM_keepNone=""

' add the URL parameters to the MM_keepURL string
For Each MM_item In Request.QueryString
MM_nextItem = "&" & MM_item & "="
If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
MM_keepURL = MM_keepURL & MM_nextItem & Server.URLencode(Request.QueryString(MM_item))
End If
Next

' add the Form variables to the MM_keepForm string
For Each MM_item In Request.Form
MM_nextItem = "&" & MM_item & "="
If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
MM_keepForm = MM_keepForm & MM_nextItem & Server.URLencode(Request.Form(MM_item))
End If
Next

' create the Form + URL string and remove the intial '&' from each of the strings
MM_keepBoth = MM_keepURL & MM_keepForm
If (MM_keepBoth &lt;&gt; "" Then
MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1)
End If
If (MM_keepURL &lt;&gt; "" Then
MM_keepURL = Right(MM_keepURL, Len(MM_keepURL) - 1)
End If
If (MM_keepForm &lt;&gt; "" Then
MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1)
End If

' a utility function used for adding additional parameters to these strings
Function MM_joinChar(firstItem)
If (firstItem &lt;&gt; "" Then
MM_joinChar = "&"
Else
MM_joinChar = ""
End If
End Function
%&gt;
&lt;%
' *** Move To Record: set the strings for the first, last, next, and previous links

Dim MM_keepMove
Dim MM_moveParam
Dim MM_moveFirst
Dim MM_moveLast
Dim MM_moveNext
Dim MM_movePrev

Dim MM_urlStr
Dim MM_paramList
Dim MM_paramIndex
Dim MM_nextParam

MM_keepMove = MM_keepBoth
MM_moveParam = "index"

' if the page has a repeated region, remove 'offset' from the maintained parameters
If (MM_size &gt; 1) Then
MM_moveParam = "offset"
If (MM_keepMove &lt;&gt; "" Then
MM_paramList = Split(MM_keepMove, "&"
MM_keepMove = ""
For MM_paramIndex = 0 To UBound(MM_paramList)
MM_nextParam = Left(MM_paramList(MM_paramIndex), InStr(MM_paramList(MM_paramIndex),"=" - 1)
If (StrComp(MM_nextParam,MM_moveParam,1) &lt;&gt; 0) Then
MM_keepMove = MM_keepMove & "&" & MM_paramList(MM_paramIndex)
End If
Next
If (MM_keepMove &lt;&gt; "" Then
MM_keepMove = Right(MM_keepMove, Len(MM_keepMove) - 1)
End If
End If
End If

' set the strings for the move to links
If (MM_keepMove &lt;&gt; "" Then
MM_keepMove = Server.HTMLEncode(MM_keepMove) & "&"
End If

MM_urlStr = Request.ServerVariables("URL" & "?" & MM_keepMove & MM_moveParam & "="

MM_moveFirst = MM_urlStr & "0"
MM_moveLast = MM_urlStr & "-1"
MM_moveNext = MM_urlStr & CStr(MM_offset + MM_size)
If (MM_offset - MM_size &lt; 0) Then
MM_movePrev = MM_urlStr & "0"
Else
MM_movePrev = MM_urlStr & CStr(MM_offset - MM_size)
End If
%&gt;
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Real Estate - Breckenridge, Frisco, Vail, Keystone - Rocky Mountain Region&lt;/title&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"&gt;
&lt;style type="text/css"&gt;
&lt;!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
background-image: url(images/back.jpg);
}
body,td,th {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #FFFFFF;
}
a:link {
color: yellow;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #FFFF00;
}
a:hover {
text-decoration: underline;
color: #CCCCCC;
}
a:active {
text-decoration: none;
color: #CCCCCC;
}
.style1 {
font-size: 10px;
color: #66FF66;
}
.style5 {
color: #FFFF00;
font-weight: bold;
}
.style6 {color: #FFFFFF}
--&gt;
&lt;/style&gt;
&lt;script language="JavaScript" type="text/JavaScript"&gt;
&lt;!--
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i&lt;a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i&lt;a.length; i++)
if (a[i].indexOf("#"!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?")&gt;0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i&lt;d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i&lt;d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i&lt;(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//--&gt;
&lt;/script&gt;
&lt;/head&gt;
&lt;body bgcolor="#FFFFFF" onLoad="MM_preloadImages('images/about_us_on.gif','images/b_inside_on.gif','images/nb_on.gif','images/real_tools_on.gif','images/travel_on.gif','images/site_map_on.gif','images/contact_us_on.gif','images/policy_on.gif','images/condo_th_on.gif','images/single_family_on.gif','images/vacant-land_on.gif','images/mls_search_on.gif')"&gt;
&lt;!-- ImageReady Slices (rules_lmh.psd) --&gt;
&lt;table width="800" border="0" align="center" cellpadding="0" cellspacing="0"&gt;
&lt;tr&gt;
&lt;td&gt;&lt;table width="100%" border="0" cellspacing="0" cellpadding="0"&gt;
&lt;tr&gt;
&lt;td width="195"&gt;&lt;object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="195" height="120"&gt;
&lt;param name="movie" value="images/logo.swf"&gt;
&lt;param name="quality" value="high"&gt;
&lt;embed src="images/logo.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="195" height="120"&gt;&lt;/embed&gt;
&lt;/object&gt;&lt;/td&gt;
&lt;td width="471"&gt;&lt;img src="images/map_phone.gif" width="471" height="120"&gt;&lt;/td&gt;
&lt;td width="12"&gt;&lt;img src="images/dots_top.gif" width="12" height="120"&gt;&lt;/td&gt;
&lt;td valign="top" bgcolor="#000000"&gt;&lt;table width="100%" border="0" cellspacing="0" cellpadding="0"&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="sitemap.asp" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image34','','images/site_map_on.gif',1)"&gt;&lt;img src="images/site_map.gif" name="Image34" width="122" height="27" border="0"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="contactus.asp" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image35','','images/contact_us_on.gif',1)"&gt;&lt;img src="images/contact_us.gif" name="Image35" width="122" height="26" border="0"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td bgcolor="#000000"&gt;&lt;a href="policy.asp" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image36','','images/policy_on.gif',1)"&gt;&lt;img src="images/policy.gif" name="Image36" width="122" height="25" border="0"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;img src="images/home_roof.gif" width="122" height="42"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td height="5" background="images/line_menu_after.gif"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;table width="100%" border="0" cellspacing="0" cellpadding="0"&gt;
&lt;tr&gt;
&lt;td width="186" height="185" valign="middle"&gt;&lt;!--#include file="quickmenu.asp"--&gt;&lt;/td&gt;
&lt;td&gt; &lt;img src="images/real_tools.jpg" alt="" width="370" height="185"&gt;&lt;/td&gt;
&lt;td valign="top"&gt;&lt;table width="100%" border="0" cellspacing="0" cellpadding="0"&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="http://www.luckymountainhome.com/mls.asp" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image37','','images/condo_th_on.gif',1)"&gt;&lt;img src="images/condo_th.gif" name="Image37" width="110" height="46" border="0"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="http://www.luckymountainhome.com/mls.asp" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image38','','images/single_family_on.gif',1)"&gt;&lt;img src="images/single_family.gif" name="Image38" width="110" height="45" border="0"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="http://www.luckymountainhome.com/mls.asp" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image28','','images/vacant-land_on.gif',1)"&gt;&lt;img src="images/vacant-land.gif" name="Image28" width="110" height="45" border="0"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="http://www.luckymountainhome.com/mls.asp" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image39','','images/mls_search_on.gif',1)"&gt;&lt;img src="images/mls_search.gif" name="Image39" width="110" height="49" border="0"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/td&gt;
&lt;td bgcolor="#000000"&gt;&lt;a href="lodging.asp"&gt;&lt;img src="images/rest_of_home.gif" width="134" height="185" border="0"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td height="5" background="images/line.gif"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;table width="100%" border="0" cellspacing="0" cellpadding="0"&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="aboutus.asp" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image30','','images/about_us_on.gif',1)"&gt;&lt;img src="images/about_us.gif" alt="Remax about us" name="Image30" width="101" height="43" border="0"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="breckenridge_inside.asp" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image29','','images/b_inside_on.gif',1)"&gt;&lt;img src="images/b_inside.gif" alt="Breckenridge Inside" name="Image29" width="162" height="43" border="0"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="neighborhood.asp" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image31','','images/nb_on.gif',1)"&gt;&lt;img src="images/nb.gif" name="Image31" width="157" height="43" border="0"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="real_estate_tools.asp" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image32','','images/real_tools_on.gif',1)"&gt;&lt;img src="images/real_tools_on.gif" name="Image32" width="162" height="43" border="0"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="travel_and_transportation.asp" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image33','','images/travel_on.gif',1)"&gt;&lt;img src="images/travel.gif" name="Image33" width="219" height="43" border="0"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td colspan="5" height="20"&gt; &lt;div align="center"&gt;|&nbsp;&nbsp;&lt;a href="realestateadvice.asp"&gt;Real Estate Advice &lt;/a&gt; &nbsp;|&nbsp;&nbsp;&lt;a href="statistics.asp"&gt;Statistics&lt;/a&gt;&nbsp;&nbsp;|&nbsp;&nbsp;&lt;a href="calculators.asp"&gt;Calculators&lt;/a&gt; &nbsp;&nbsp;|&nbsp;&nbsp;&lt;a href="inforequestform.asp"&gt;Info Request Form &lt;/a&gt; &nbsp;&nbsp;| &nbsp;&lt;a href="real_estate_glossary.asp"&gt;Real Estate Glossary &lt;/a&gt; &nbsp;&nbsp;| &lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td background="images/line.gif" height="5"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;table width="100%" border="0" cellspacing="0" cellpadding="0"&gt;
&lt;tr&gt;
&lt;td valign="top" background="images/main.gif"&gt;&lt;table width="100%" border="0" cellspacing="8" cellpadding="8"&gt;
&lt;tr&gt;
&lt;td valign="top" class="style5"&gt;&lt;h3&gt;MLS RESIDENTIAL / DRAFT &lt;/h3&gt;
&lt;table width="100%" border="0" cellpadding="3" cellspacing="3" bgcolor="#000000"&gt;
&lt;%
While ((Repeat1__numRows &lt;&gt; 0) AND (NOT Recordset1.EOF))
%&gt;
&lt;tr&gt;
&lt;td width="21%" bgcolor="#333333"&gt;&lt;img src="imagesmls/&lt;%=(Recordset1.Fields.Item("Field1".Value)%&gt;_101.jpg" width="115"&gt;&lt;/td&gt;
&lt;td width="21%" bgcolor="#333333"&gt;MLS # &lt;%=(Recordset1.Fields.Item("Field1".Value)%&gt;&lt;/td&gt;
&lt;td width="56%" bgcolor="#333333" class="style6"&gt;&lt;%=(Recordset1.Fields.Item("Field155".Value)%&gt;&lt;/td&gt;
&lt;td width="23%" bgcolor="#333333" class="style6"&gt;Price:&nbsp;&nbsp;$&lt;%=(Recordset1.Fields.Item("Field137".Value)%&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
Recordset1.MoveNext()
Wend
%&gt;
&lt;/table&gt;
&lt;p align="center"&gt;&lt;A HREF="&lt;%=MM_movePrev%&gt;"&gt;&lt;&lt; Previuos&lt;/A&gt; | &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;| &lt;A HREF="&lt;%=MM_moveNext%&gt;"&gt;Next &gt;&gt;&lt;/A&gt;&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt; &lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td height="73" align="center" valign="middle" background="images/bottom_menu.gif"&gt;&lt;table width="100%" border="0" cellspacing="5" cellpadding="5"&gt;
&lt;tr&gt;
&lt;td&gt;&lt;div align="center"&gt;&lt;a href="aboutus.asp"&gt;ABOUT US&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="breckenridge_inside.asp"&gt;BRECKENRIDGE INSIDE&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;div align="center"&gt;&lt;a href="neighborhood.asp"&gt;NEIGHBORHOOD&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;
&lt;td&gt;&lt;div align="center"&gt;&lt;a href="real_estate_tools.asp"&gt;REAL ESTATE TOOLS&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;
&lt;td&gt; &lt;div align="center"&gt;&lt;a href="travel_and_transportation.asp"&gt;TRAVEL AND TRANSPORTATION&lt;/a&gt; &lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt; &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td bgcolor="#000000"&gt;&lt;table width="100%" border="0" cellspacing="3" cellpadding="3"&gt;
&lt;tr&gt;
&lt;td width="31%"&gt;&lt;div align="center"&gt;All Rights reserved LMH 2005&copy; &lt;/div&gt;&lt;/td&gt;
&lt;td width="37%" bgcolor="#000000"&gt;&lt;div align="center" class="style1"&gt;&#1083;&#1091;&#1095;&#1096;&#1077; &#1075;&#1086;&#1088; &#1084;&#1086;&#1075;&#1091;&#1090; &#1073;&#1099;&#1090;&#1100; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1075;&#1086;&#1088;&#1099;&lt;/div&gt;&lt;/td&gt;
&lt;td width="32%"&gt;&lt;div align="center"&gt;We build Virtual Homes - &lt;a href="http://www.eboxlab.com" target="_blank"&gt;Eboxlab.com&lt;/a&gt; &lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;!-- End ImageReady Slices --&gt;
&lt;div align="center"&gt;&lt;/div&gt;

&lt;/body&gt;
&lt;/html&gt;
&lt;%
Recordset1.Close()
Set Recordset1 = Nothing
%&gt;
-----------------------------------------



Reply to this topic