Add [12_m1284p_WIZNET_HTTPServer_SDCARD_pages] prj

This commit is contained in:
maxxir_w
2019-01-18 14:35:51 +04:00
parent 4c8449a175
commit aa2ce7afd2
50 changed files with 17471 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
function NetinfoCallback(o)
{
$('txtmac').value = o.mac;
$('txtip').value = o.ip;
$('txtgw').value = o.gw;
$('txtsn').value = o.sn;
$('txtdns').value = o.dns;
if(typeof(window.external)!='undefined')
{
obj = $$_ie('input', 'dhcp');
}
else
{
obj = $$('dhcp');
}
}
function getNetinfo()
{
var oUpdate;
setTimeout(function()
{
oUpdate = new AJAX('get_netinfo.cgi', function(t)
{
try
{
eval(t);
}
catch(e)
{
alert(e);
}
}
);
oUpdate.doGet();
}
, 1500);
}