salve a tutti è un po che vi seguo e adesso ho bisogno di un aiuto
non riesco a usare i css ossia se creo una pagina web e uso il css da me creato funziona
se lo implemneto nel software non va
ossia ie6 me lo legge e lo esegue correttamente ma crome e firefox non ce niente da fare
pare che sia una protezione per evitare la manomissione da remoto dei file del pc
aggiungo una domanda come faccio a usare i doppi apici nella stringa ethernet.print("")
ora sto usando gli apici singoli al post dei doppi es......<link rel='stylesheet' type='text/css' href='file:///C|/stile/mystyle.css' >
invece di <link rel="stylesheet" type="text/css" href="file:///C|/stile/mystyle.css" >
il compilatore da errore se uso la seconda versione
spero di essere stato chiaro e di essermi spiegato

questo è il listato che uso
// A simple web server that always just says "Hello World"
#include "etherShield.h"
#include "ETHER_28J60.h"
static uint8_t mac[6] = {0x54, 0x55, 0x58, 0x10, 0x00, 0x24}; // this just needs to be unique for your network,
// so unless you have more than one of these boards
// connected, you should be fine with this value.
static uint8_t ip[4] = {192, 168, 1, 15}; // the IP address for your board. Check your home hub
// to find an IP address not in use and pick that
// this or 10.0.0.15 are likely formats for an address
// that will work.
static uint16_t port = 80; // Use port 80 - the standard for HTTP
ETHER_28J60 ethernet;
void setup()
{
ethernet.setup(mac, ip, port);
}
void loop()
{
if (ethernet.serviceRequest())
{
ethernet.print("<html>");
ethernet.print ("<head>"); // HEAD DELLA PAGINA HTML
ethernet.print ("<META HTTP-EQUIV='CACHE-CONTROL' CONTENT='NO-CACHE'>");
ethernet.print ("<link rel='stylesheet' type='text/css' href='file:///C|/stile/mystyle.css' >");
ethernet.print ("</head>"); //FINE HEAD
ethernet.print ("<body>");
ethernet.print("<H2>Debug Arduino</H2>");
ethernet.print("</body>");
ethernet.print ("</HTML>");
ethernet.respond();
}
delay(100);
}
grazie
PS ma il post di presentazione non funzione