Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Stuff not rendering in Design View

3 views
Skip to first unread message

Murray *TMM*

unread,
Aug 6, 2003, 2:58:09 PM8/6/03
to
Grady:

Sounds like an unterminated comment....

--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver MX
(If you *MUST* email me, don't LAUGH when you do so!)
==================
news://forums.macromedia.com/macromedia.dreamweaver - THE BEST WAY TO GET
ANSWERS
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.DreamweaverFAQ.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================

"jesterbear" <webfor...@macromedia.com> wrote in message
news:bgpupl$l8b$1...@forums.macromedia.com...
> Hello All,
>
> I have some code, obviously, but specifically the Horizontal looper 2
extension with the Go to Detail Page behaviour in it, that when I put it in
my page, causes the elements in the page not to render at all in the Design
view. I have looked at the code, and it is fine. Has anyone else
experienced this at all? Any help is appreciated.
>
> Thanks in Advance!
>
> Grady
>
> Grady K. Kelly
> http://www.gradykelly.com
> em...@gradykelly.com


Paul Whitham TMM

unread,
Aug 6, 2003, 6:45:53 PM8/6/03
to
The page will only show the single table element. It will not show the
number of columns that you have specified.

--
Regards

Paul Whitham
Valleybiz Internet Design
www.valleybiz.net

Team Macromedia Volunteer for Ultradev/Dreamweaver MX
www.macromedia.com/support/forums/team_macromedia

jesterbear

unread,
Aug 7, 2003, 12:06:39 AM8/7/03
to
Here is my code. I looked at the includes and there are no body tags floating around. I have seen that before, it was the first thing i looked for. After looking at the code, if you want to see the page, it is at: http://slippers.gkdh.com/

<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!--#include file="Connections/connSlippers.asp" -->
<%
Dim rsSpotlight
Dim rsSpotlight_numRows

Set rsSpotlight = Server.CreateObject("ADODB.Recordset")
rsSpotlight.ActiveConnection = MM_connSlippers_STRING
rsSpotlight.Source = "SELECT * FROM slippers WHERE prodBrand = 'AP' and showHide='show'"
rsSpotlight.CursorType = 0
rsSpotlight.CursorLocation = 2
rsSpotlight.LockType = 1
rsSpotlight.Open()

rsSpotlight_numRows = 0
%>
<%
Dim rsTiles
Dim rsTiles_numRows

Set rsTiles = Server.CreateObject("ADODB.Recordset")
rsTiles.ActiveConnection = MM_connSlippers_STRING
rsTiles.Source = "SELECT * FROM tiles"
rsTiles.CursorType = 0
rsTiles.CursorLocation = 2
rsTiles.LockType = 1
rsTiles.Open()

rsTiles_numRows = 0
%>
<%
Dim rsIcon
Dim rsIcon_numRows

Set rsIcon = Server.CreateObject("ADODB.Recordset")
rsIcon.ActiveConnection = MM_connSlippers_STRING
rsIcon.Source = "SELECT icon, prodName, id, prodBrand FROM slippers WHERE prodBrand ='AP'"
rsIcon.CursorType = 0
rsIcon.CursorLocation = 2
rsIcon.LockType = 1
rsIcon.Open()

rsIcon_numRows = 0
%>

<%
Dim MM_paramName
%>
<%
' *** 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 <> "") 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 <> "") Then
MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1)
End If
If (MM_keepURL <> "") Then
MM_keepURL = Right(MM_keepURL, Len(MM_keepURL) - 1)
End If
If (MM_keepForm <> "") 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 <> "") Then
MM_joinChar = "&"
Else
MM_joinChar = ""
End If
End Function
%>
<html>
<head>
<title>Alpaca Pete's SheepskinSlippers.com!! :: Sheepskinslippers Make Great Gifts! Direct from the manufacturer!</title>
<meta NAME=description CONTENT="Alpaca Pete's SheepskinSlippers.com!! :: Sheepskinslippers Make Great Gifts! Direct from the manufacturer! Featuring Mens Slippers, Women Slippers, Moccassins, House Slipper, Bedroom Slipper, Fuzzy Slipper, UGG, Ugg Boots, MinieTonkas, and Hushpuppies">
<meta NAME=keywords CONTENT="Sheepskin Slippers, Mens Slipper, House Slipper, Womens Slipper, Bedroom Slipper, House Shoes, Slipper Shoes, MinnieTonka, MinnieTonka Moccassin, Ugg, Ugg Boot, Hush Puppy, Hush Puppies, Hush Puppy Shoe, Gift Basket, Gift Basket Ideas, Slipper Gift Baskets, Holiday Gift Baskets, Free Shipping, Free Returns">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="/css/sheet.css" rel="stylesheet" type="text/css">
</head>

<body background="/images/background.gif" topmargin="10">
<!--#include virtual="/includes/mast.htm" -->

<table width="760" height="224" border="0" cellpadding="0" cellspacing="0" bordercolor="#000000">
<tr>

<td width="420">
<%
' Moving to random record - Steven Jones' Extension
If Not(rsSpotlight.bof and rsSpotlight.eof) Then
' reset the cursor to the beginning
If (rsSpotlight.CursorType > 0) Then
rsSpotlight.MoveFirst
Else
rsSpotlight.Requery
End If

rsSpotlight_totalrn = -1
rsSpotlight_totalrn = rsSpotlight.RecordCount ' ony works on some recordsets, but much faster
If (rsSpotlight_totalrn = -1) Then ' and if it didn't work, we still have to count the records.

' count the total records by iterating through the recordset
rsSpotlight_totalrn=0
While (Not rsSpotlight.EOF)
rsSpotlight_totalrn = rsSpotlight_totalrn + 1
rsSpotlight.MoveNext
Wend

' reset the cursor to the beginning
If (rsSpotlight.CursorType > 0) Then
rsSpotlight.MoveFirst
Else
rsSpotlight.Requery
End If

End If

' now do final adjustments, and move to the random record
rsSpotlight_totalrn = rsSpotlight_totalrn - 1
If rsSpotlight_totalrn > 0 Then
Randomize
rsSpotlight.Move Int((rsSpotlight_totalrn + 1) * Rnd)
End If
End If
' all done; you should always check for an empty recordset before displaying data
%>
<table border="0" cellpadding="0" cellspacing="0" width="410">
<tr>
<td width="410">
<table width="410" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><span class="spotlightName"><%=(rsSpotlight.Fields.Item("prodName").Value)%></span></td>
</tr>
</table>
</td>
</tr>
<tr>
<td><table border="0" cellpadding="0" cellspacing="0" width="410">
<tr>
<td><a href="http://www.alpacapetesinc.com/Merchant2/merchant.mv?Screen=BASK&Store_Code=APOSM&Action=ADPR&Product_code=<%=(rsSpotlight.Fields.Item("prodCode").Value)%>&Attributes=Yes&Quantity=1"><img name="spotlight_r2_c1" src="/images/<%=(rsSpotlight.Fields.Item("spotImage").Value)%>" width="237" height="186" border="0" alt=""></a></td>
<td><table border="0" cellpadding="0" cellspacing="0" width="173">
<tr>
<td width="173" height="108"><span class="smallest"><%=(rsSpotlight.Fields.Item("spotDesc").Value)%></span></td>
</tr>
<tr>
<td><table border="0" cellpadding="0" cellspacing="0" width="173">
<tr>
<td><a href="http://www.alpacapetesinc.com/Merchant2/merchant.mv?Screen=BASK&Store_Code=APOSM&Action=ADPR&Product_code=<%=(rsSpotlight.Fields.Item("prodCode").Value)%>&Attributes=Yes&Quantity=1"><img name="spotlight_r3_c2" src="/images/<%=(rsSpotlight.Fields.Item("spotPrice").Value)%>" width="83" height="78" border="0" alt="BUY NOW!"></a></td>
<td><table border="0" cellpadding="0" cellspacing="0" width="90">
<tr>
<td><a HREF="/default_details.asp?<%= MM_keepNone & MM_joinChar(MM_keepNone) & "id=" & rsSpotlight.Fields.Item("id").Value %>"><img name="spotlight_r3_c3" src="/images/spotlight_r3_c3.gif" width="90" height="39" border="0" alt=""></a></td>
</tr>
<tr>
<td><a href="http://www.alpacapetesinc.com/Merchant2/merchant.mv?Screen=BASK&Store_Code=APOSM&Action=ADPR&Product_code=<%=(rsSpotlight.Fields.Item("prodCode").Value)%>&Attributes=Yes&Quantity=1"><img name="spotlight_r4_c3" src="/images/spotlight_r4_c3.gif" width="90" height="39" border="0" alt="BUY NOW!"></a></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
</td>
<td width="340"><p class="small">We feature the Alpaca Pete Sheepskin Slipper
Collection. We design and produce these great sheep skin slippers.</p>
<p class="small">We have 5 styles of slippers to choose from. We feature
a soft sole sheepskin slipper house shoe, Two styles of hard sole sheep
skin slippers, a moccasin sheepskin slipper, a slip on sheep skin slipper
that comes in both tan and blue. Choose these fuzzy slippers as warm house
slippers. They are unisex so they are the perfect womens slipper or man
slipper that serve as a bedroom slipper or house shoe. These house shoes
are a perfect gift basket idea, Whether you need a thank you gift basket,
a wedding gift idea, a father day gift basket, or a mothers day gift idea.
</p>
</td>
</tr>
<tr>
<td height="16" colspan="2">
<center>
<img src="/images/760_bar.gif" width="760" height="16">
</center></td>
</tr>
</table>

<table width="760" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="220" valign="top"><center>
<!--#include virtual="/includes/littlenav.htm" -->
</center></td>
<td width="540" valign="top"><center class="title">
<table width="540" height="356" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><table width="540" height="159" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" align="center">
<%
startrw = 0
endrw = HLooper1__index
numberColumns = 4
numrows = 1
while((numrows <> 0) AND (Not rsIcon.EOF))
startrw = endrw + 1
endrw = endrw + numberColumns
%>
<tr align="center" valign="top">
<%
While ((startrw <= endrw) AND (Not rsIcon.EOF))
%>
<td><a href="/default_details.asp?<%= MM_keepNone & MM_joinChar(MM_keepNone) & "id=" & rsIcon.Fields.Item("id").Value %>"><img src="/images/<%=(rsIcon.Fields.Item("icon").Value)%>" alt="<%=(rsIcon.Fields.Item("prodName").Value)%>" width="128" height="159" border="0"></a></td>
</td>
<%
startrw = startrw + 1
rsIcon.MoveNext()
Wend
%></tr>
<%
numrows=numrows-1
Wend
%>
</table>
</td>
</tr>
</table></td>
</tr>
<tr>
<td><img src="/images/760_bar.gif" width="540" height="16"></td>
</tr>
<tr>
<td><table width="540" border="0" cellspacing="0" cellpadding="2">
<tr>
<td width="256" rowspan="3"><div align="left" class="small">A
great Holiday gift idea is to take advantage of our free
gift basket offer and send a pair a sheepskin skippers as
a holiday gift basket. Sheep skin slipper birthday gift
baskets are a great birthday gift idea. Our sheep skin slippers
come as man shoes or woman shoes and make an excellent corporate
gift basket</div></td>
<td><center>
<a href="/minnietonka.asp"><img src="/images/tile_minnetonka.gif" alt="MinneTonka Slippers" width="212" height="54" border="0"></a>
</center></td>
</tr>
<tr>
<td><center>
<a href="/uggs.asp"><img src="/images/tile_ugg.gif" alt="Ugg Slippers" width="212" height="54" border="0"></a>
</center></td>
</tr>
<tr>
<td><center>
<a href="/hushpuppies.asp"><img src="/images/tile_hushpuppies.gif" alt="Hush Puppies" width="212" height="54" border="0"></a>
</center></td>
</tr>
</table></td>
</tr>
</table>
</center></td>
</tr>
<tr>
<td colspan="2" valign="top"><img src="/images/760_bar.gif" width="760" height="16"></td>
</tr>
<tr>
<td colspan="2" valign="top" class="smallest"><table width="760" border="0" cellspacing="0" cellpadding="4">
<tr>
<td width="312" class="smallest"><div align="right">&copy;2003 Alpaca
Pete's All rights reserved.<br>
<a href="http://www.sheepskinslippers.com">Home</a> | <a href="/specials.asp">Specials</a>
| <a href="/multimedia.asp">Multimedia</a> | <a href="/contact.asp">Contact
Us</a><br>
<a href="http://www.alpacarugs.com">ALPACA RUGS</a> | <a href="http://www.sheepskinseatcovers.com">SHEEPSKIN
SEATCOVERS</a><br>
<a href="http://www.alpacasweaters.com">ALPACA SWEATERS</a> | <a href="http://www.sheepskinrugs.com">SHEEPSKIN
RUGS</a><br>
1-800-GOT-PETE </div></td>
<td width="448"><table width="448" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="90"><img src="/images/tile_ups.gif" width="90" height="100"></td>
<td width="106"><img src="/images/tile_equifax.gif" width="106" height="100"></td>
<td width="90"><img src="/images/tile_satisfaction.gif" width="90" height="100"></td>
<td width="162"><img src="/images/tile_miva.gif" width="162" height="100"></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>

<%
rsSpotlight.Close()
Set rsSpotlight = Nothing
%>
<%
rsTiles.Close()
Set rsTiles = Nothing
%>
<%
rsIcon.Close()
Set rsIcon = Nothing
%>

Paul Whitham TMM

unread,
Aug 7, 2003, 12:29:12 AM8/7/03
to
I wonder if the problem is the script that is running your banner, that must
be in the include file.

--
Regards

Paul Whitham
Valleybiz Internet Design
www.valleybiz.net

Team Macromedia Volunteer for Ultradev/Dreamweaver MX
www.macromedia.com/support/forums/team_macromedia
"jesterbear" <webfor...@macromedia.com> wrote in message

news:bgsj8f$erd$1...@forums.macromedia.com...

jesterbear

unread,
Aug 7, 2003, 1:19:19 AM8/7/03
to
Here is the masthead code:

<table border="0" cellpadding="0" cellspacing="0" width="760">
<tr>
<td><table border="0" cellpadding="0" cellspacing="0" width="760">
<tr>
<td><a href="/default.asp"><img name="mast_r1_c1" src="/images/mast_r1_c1.gif" width="329" height="100" border="0" alt="Alpaca Pete's Sheepskin Slippers.com"></a></td>
<td><table border="0" cellpadding="0" cellspacing="0" width="431">
<tr>
<td><img name="mast_r1_c7" src="/images/mast_r1_c7.gif" width="431" height="9" border="0" alt=""></td>
</tr>
<tr>
<td><table border="0" cellpadding="0" cellspacing="0" width="431">
<tr>
<td>

<%
' Moving to random record - Steven Jones' Extension

If Not(rsTiles.bof and rsTiles.eof) Then


' reset the cursor to the beginning

If (rsTiles.CursorType > 0) Then
rsTiles.MoveFirst
Else
rsTiles.Requery
End If

rsTiles_totalrn = -1
rsTiles_totalrn = rsTiles.RecordCount ' ony works on some recordsets, but much faster
If (rsTiles_totalrn = -1) Then ' and if it didn't work, we still have to count the records.

' count the total records by iterating through the recordset

rsTiles_totalrn=0
While (Not rsTiles.EOF)
rsTiles_totalrn = rsTiles_totalrn + 1
rsTiles.MoveNext
Wend

' reset the cursor to the beginning

If (rsTiles.CursorType > 0) Then
rsTiles.MoveFirst
Else
rsTiles.Requery
End If

End If

' now do final adjustments, and move to the random record

rsTiles_totalrn = rsTiles_totalrn - 1
If rsTiles_totalrn > 0 Then
Randomize
rsTiles.Move Int((rsTiles_totalrn + 1) * Rnd)


End If
End If
' all done; you should always check for an empty recordset before displaying data
%>

<a href="/specials.asp"><img name="mast_r2_c7" src="/images/<%=(rsTiles.Fields.Item("tileImage").Value)%>" width="212" height="84" border="0" alt="Slipper Specials"></a></td>
<td><img name="mast_r2_c10" src="/images/mast_r2_c10.gif" width="213" height="84" border="0" alt="Free Shipping Free Returns"></td>
<td><img name="mast_r2_c13" src="/images/mast_r2_c13.gif" width="6" height="84" border="0" alt=""></td>


</tr>
</table></td>
</tr>
<tr>

<td><img name="mast_r3_c7" src="/images/mast_r3_c7.gif" width="431" height="7" border="0" alt=""></td>


</tr>
</table></td>
</tr>
</table></td>
</tr>

<tr>
<td><table border="0" cellpadding="0" cellspacing="0" width="760">
<tr>
<td><a href="/default.asp"><img name="mast_r4_c1" src="/images/mast_r4_c1.gif" width="60" height="22" border="0" alt="Home"></a></td>
<td><a href="/specials.asp"><img name="mast_r4_c2" src="/images/mast_r4_c2.gif" width="87" height="22" border="0" alt="Slipper Specials"></a></td>
<td><a href="http://www.alpacarugs.com"><img name="mast_r4_c3" src="/images/mast_r4_c3.gif" width="118" height="22" border="0" alt="Alpaca Rugs"></a></td>
<td><a href="http://www.sheepskinseatcovers.com"><img name="mast_r4_c6" src="/images/mast_r4_c6.gif" width="116" height="22" border="0" alt="Sheepskin Seatcovers"></a></td>
<td><a href="http://www.alpacasweaters.com"><img name="mast_r4_c8" src="/images/mast_r4_c8.gif" width="100" height="22" border="0" alt="Alpaca Sweaters"></a></td>
<td><a href="http://www.sheepskinrugs.com"><img name="mast_r4_c9" src="/images/mast_r4_c9.gif" width="142" height="22" border="0" alt="Sheepskin Rugs"></a></td>
<td><a href="/contact.asp"><img name="mast_r4_c11" src="/images/mast_r4_c11.gif" width="87" height="22" border="0" alt="Contact Us"></a></td>
<td><img name="mast_r4_c12" src="/images/mast_r4_c12.gif" width="50" height="22" border="0" alt=""></td>


</tr>
</table></td>
</tr>
<tr>

<td><table border="0" cellpadding="0" cellspacing="0" width="760">
<tr>
<td><img name="mast_r5_c1" src="/images/mast_r5_c1.gif" width="164" height="29" border="0" alt="1-800-GOT-PETE"></td>
<td><table border="0" cellpadding="0" cellspacing="0" width="596">
<tr>
<td><img name="mast_r5_c4" src="/images/mast_r5_c4.gif" width="596" height="6" border="0" alt=""></td>
</tr>
<tr>
<td><table border="0" cellpadding="0" cellspacing="0" width="596">
<tr>
<td><img name="mast_r6_c4" src="/images/mast_r6_c4.gif" width="1" height="18" border="0" alt=""></td>
<td width="589" height="18">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0" width="589" height="18">
<param name="movie" value="/flash/marquee.swf">
<param name="quality" value="high">
<param name="bgcolor" value="#FFFFFF">
<embed src="/flash/marquee.swf" quality="high" bgcolor="#FFFFFF"
width="589" height="18"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">
</embed>
</object>
</td>
<td><img name="mast_r6_c13" src="/images/mast_r6_c13.gif" width="6" height="18" border="0" alt=""></td>


</tr>
</table></td>
</tr>
<tr>

<td><img name="mast_r7_c4" src="/images/mast_r7_c4.gif" width="596" height="5" border="0" alt=""></td>


</tr>
</table></td>
</tr>
</table></td>
</tr>

<tr>
<td><img name="mast_r8_c1" src="/images/mast_r8_c1.gif" width="760" height="8" border="0" alt=""></td>
</tr>
</table>

Paul Whitham TMM

unread,
Aug 7, 2003, 5:51:58 PM8/7/03
to
Grady

I hadn't realised that it was a flash movie in the masthead. I am at a loss
as to what is causing the problem as there does not appear to be any code in
there that would cause it a problem

--
Regards

Paul Whitham
Valleybiz Internet Design
www.valleybiz.net

Team Macromedia Volunteer for Ultradev/Dreamweaver MX
www.macromedia.com/support/forums/team_macromedia
"jesterbear" <webfor...@macromedia.com> wrote in message

news:bgsngn$jpd$1...@forums.macromedia.com...

stevyj...@gmail.com

unread,
Jul 7, 2012, 12:02:25 PM7/7/12
to
http://www.thelatinstore.com.au/prod123.htm



Brand new alpaca rugs handmade by skilled

artist made up of 100% alpaca available at our

store with different variety and design at

cheaper price.
0 new messages