Maker Pro
Maker Pro

New Digital Sprite 2 - Webpages

S

Spike

Hi

Does anyone have any info on how to author webpages to work with the
new DS2 - want to create some extra webpages on the DS2 which network
users can view, but customised with different graphics etc

Thanks


Spike
 
If you need to wrap additional information around the online view, it's
fairly simple to do using frames. Following is a simple example of a
framed site.

<!-- frames -->
<frameset rows="50%,*" cols="50%,*">
<frame name="Logo" src="Your_Logo.htm" marginwidth="10"
marginheight="10" scrolling="auto" frameborder="no">
<frame name="Top Menu" src="Your_Top_Menu.htm" marginwidth="10"
marginheight="10" scrolling="auto" frameborder="no">
<frame name="Other Stuff" src="Some_Other_Stuff.htm"
marginwidth="10" marginheight="10" scrolling="auto" frameborder="no">
<frame name="DS2 Window" src="Ethernet_address_of_DS2"
marginwidth="10" marginheight="10" scrolling="auto" frameborder="yes">
</frameset>

Regards,
Robert L Bass
www.BassBurglarAlarms.com
 
C

Crash Gordon

frames yuck


| If you need to wrap additional information around the online view, it's
| fairly simple to do using frames. Following is a simple example of a
| framed site.
|
| <!-- frames -->
| <frameset rows="50%,*" cols="50%,*">
| <frame name="Logo" src="Your_Logo.htm" marginwidth="10"
| marginheight="10" scrolling="auto" frameborder="no">
| <frame name="Top Menu" src="Your_Top_Menu.htm" marginwidth="10"
| marginheight="10" scrolling="auto" frameborder="no">
| <frame name="Other Stuff" src="Some_Other_Stuff.htm"
| marginwidth="10" marginheight="10" scrolling="auto" frameborder="no">
| <frame name="DS2 Window" src="Ethernet_address_of_DS2"
| marginwidth="10" marginheight="10" scrolling="auto" frameborder="yes">
| </frameset>
|
| Regards,
| Robert L Bass
| www.BassBurglarAlarms.com
|
 
C

Crash Gordon

They create more problems with navigation and bookmarking of pages.
They have their place if used properly and the designer knows how to solve
all the issues that will arise...but for most webs these days they aren't
needed.



| Frames are easy to use once you get the hang of them. Search engines
| don't like them but that should have no bearing on the gentleman's
| project.
|
| Regards,
| Robert L Bass
| www.BassBurglarAlarms.com
|
|
 
Top