Website Uptime Monitor

Monitor website availability and server information for any domain

neoterran.us

Uptime & Server Information

Current Status

Status
Active
Server Type
Microsoft-IIS/10.0
Page Title
Index</title/> <meta name="description" content="NeoTerran website"> <meta name="author" content="Webmaster"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="shortcut icon" href="/Logo.ico"> <link rel="Logo" href="/Content/Images/Logo.png"> <link href="/Content/html5boilerplate-site.min.css" rel="stylesheet" type="text/css" /> <link href="/Content/style.min.css" rel="stylesheet" type="text/css" /> <script src="/Scripts/modernizr-2.0.6.min.js" type="text/javascript"></script> <script type="text/javascript" src="/Scripts/jquery-1.7.min.js" ></script> <script type="text/javascript" src="/Scripts/jquery.validate.min.js" ></script> <script type="text/javascript" src="/Scripts/jquery.validate.unobtrusive.min.js" ></script> </head> <body> <div id="container"> <div id="header-container"> <header class="wrapper"> <div id="logo"> <img src="/Content/Images/Logo.png" alt="Logo here"/> </div> <!--start navigation --> </header> <!--end header --> <div id="nav"> <div class="button"><a href="/">Home</a></div> <div class="button"><a href="/Home/Solutions">Solutions</a></div> <div class="button"><a href="/Home/Services">Services</a></div> <div class="button"><a href="/Home/Contact">Contact</a></div> <div class="button"><a href="/Home/About">About</a></div> </div> <!--end navigation --></div> <div id="main" role="main"> <!--start main content --> <div id="main" class="wrapper"> <div id="enter"> <h2>Specializing in Windows 8 Metro-style, .NET, and HTML 5 applications</h2> </div> <aside> <p><span class="big">L</span>et us help you reach your goals. Whether you are looking for an end-to-end solution, staffing augmentation, or something in between, we can fulfill your resourcing requirments.</p> <p><span class="big">E</span>xceptional planning, execution, and delivery of world-class software solutions. Our sales professionals can help you choose the best services to meet your needs.</p> <p><span class="big">A</span>chieve unparalleled sucess with your next endeavour. Our project managers can drive your solution from inception through delivery saving you time and money.</p> <p><span class="big">D</span>edicated professional design and development resources create robust innovative solutions. Our solutions are designed for performance, scalability, and style.</p> <h2>Follow Us</h2><hr/> <a href="http://linkedin.com/company/neoterran"><img src="/Content/Images/LinkedInIcon32x32.png" alt="LinkedIn" class="imagedropshadow"/></a> <a href="http://facebook.com/neoterrancorp"><img src="/Content/Images/FacebookIcon32x32.png" alt="Facebook" class="imagedropshadow"/></a> <a href="http://twitter.com/NeoTerran"><img src="/Content/Images/TwitterIcon32x32.png" alt="Twitter" class="imagedropshadow"/></a> </aside> <article> <div style="width:600px; height:354; position:static; float:left"> <div class="bannerHeader" onclick="slideContent('slide1', new Array('slide2', 'slide3'), this);"><span id="planHeaderText">Plan</span></div> <div class="bannerHeader" onclick="slideContent('slide2', new Array('slide1', 'slide3'), this);"><span id="executeHeaderText">Execute</span></div> <div class="bannerHeader" onclick="slideContent('slide3', new Array('slide1', 'slide2'), this);"><span id="deliverHeaderText">Deliver</span></div> <div style="float:left; width:540px; height:354px; overflow:hidden;"> <div id="slide1"> </div> <div id="slide2"> </div> <div id="slide3"> </div> </div> </div> <div id="feature"> <h2>What We Do</h2><hr/><img src="/Content/Images/WhatWeDo.png" alt="we do"/><hr/><p><span class="big">W</span>e deliver world-class software solutions. Our passion is providing the highest caliber design, development, and management resources to our clients. No matter what the scope of your project we can help.</p> </div> <div class="abox"> <h2>Our Commitment</h2><hr/><p><span class="big">W</span>e strive to assist our clients in achieving success. Your projects are important to us. Let us help bring your vision to reality. <a href="/Home/Contact">Contact</a> one of our sale professionals to get started today.</p><img src="/Content/Images/Commitment.png" alt="Commitment" /> </div> </article> </div> <!--end main content --> </div> <!--start footer --> <div id="footer-container"> <footer class="wrapper"> <div class="footer-nav"> <a href="/">Home</a> <a href="/Home/Solutions">Solutions</a> <a href="/Home/Services">Services</a> <a href="/Home/About">About</a> <a href="/Home/Contact">Contact</a> <a href="/Home/Privacy">Privacy</a> <a href="/Home/Legal">Legal</a> </div> <div class="copy"><a href="/">NeoTerran Corporation</a> © copyright neoterran.com</div> <!--end footer nav --> </footer> </div> <!--end footer --> </div> <!-- eo #container --> <script src="//ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.min.js"></script> <script>window.jQuery || document.write("<script src='/Scripts/jquery-1.7.min.js'>\x3C/script>")</script> <!-- scripts concatenated and minified via build script--> <script src="/Scripts/app-plugins.min.js"></script> <script src="/Scripts/app.min.js"></script> <script type="text/javascript"> function flipImage(image) { var myCanvas = document.createElement("canvas"); var myCanvasContext = myCanvas.getContext("2d"); var imgWidth = image.width; var imgHeight = image.height; // You'll get some string error if you fail to specify the dimensions myCanvas.width = imgWidth; myCanvas.height = imgHeight; // alert(imgWidth); myCanvasContext.drawImage(image, 0, 0); // this function cannot be called if the image is not rom the same domain. You'll get security error var imageData = myCanvasContext.getImageData(0, 0, imgWidth, imgHeight); // Traverse every row and flip the pixels for (i = 0; i < imageData.height; i++) { // We only need to do half of every row since we're flipping the halves for (j = 0; j < imageData.width / 2; j++) { var index = (i * 4) * imageData.width + (j * 4); var mirrorIndex = ((i + 1) * 4) * imageData.width - ((j + 1) * 4); for (p = 0; p < 4; p++) { var temp = imageData.data[index + p]; imageData.data[index + p] = imageData.data[mirrorIndex + p]; imageData.data[mirrorIndex + p] = temp; } } } myCanvasContext.putImageData(imageData, 0, 0, 0, 0, imageData.width, imageData.height); return myCanvas.toDataURL(); } function slideContent(elementId, otherElementIds, headerElement) { var element = document.getElementById(elementId); if (element.style.display != "block") { //element.style.zIndex = 50; element.style.display = "block"; for (var i = 0; i < otherElementIds.length; i++) { //animate(otherElementIds[i], 60, 0, 0, 264, 250, null); var otherElement = document.getElementById(otherElementIds[i]); //otherElement.style.zIndex = 49 - i; otherElement.style.display = "none"; } if (element.up == null || element.down) { //animate(elementId, 60, 0, 0, 264, 250, null); //animate(elementId, 0, 0, 540, 264, 250, null); element.up = true; element.down = false; // headerElement.innerHTML = ' > <br /> > <br /> > '; } else { //animate(elementId, 0, 0, 540, 264, 250, null); element.down = true; element.up = false; //headerElement.innerHTML = ' < <br /> < <br /> < '; } } } function animate(elementID, newLeft, newTop, newWidth, newHeight, time, callback) { var el = document.getElementById(elementID); if (el == null) return; //Check to see if left and top are set before trying to parse. These values may not be set particularly with //multiple DIVs and float:left styles... var cLeft = el.style.left == "" ? 0 : parseInt(el.style.left); //var cLeft = parseInt(el.style.left); var cTop = el.style.top == "" ? 0 : parseInt(el.style.top); //var cTop = parseInt(el.style.top); var cWidth = parseInt(el.style.width); var cHeight = parseInt(el.style.height); var totalFrames = 1; if (time > 0) totalFrames = time / 40; var fLeft = newLeft - cLeft; //alert(fLeft.toString() + " : " + newLeft.toString() + " : " + cLeft.toString()); if (fLeft != 0) fLeft /= totalFrames; var fTop = newTop - cTop; if (fTop != 0) fTop /= totalFrames; var fWidth = newWidth - cWidth; if (fWidth != 0) fWidth /= totalFrames; var fHeight = newHeight - cHeight; if (fHeight != 0) fHeight /= totalFrames; doFrame(elementID, cLeft, newLeft, fLeft, cTop, newTop, fTop, cWidth, newWidth, fWidth, cHeight, newHeight, fHeight, callback); } function doFrame(eID, cLeft, nLeft, fLeft, cTop, nTop, fTop, cWidth, nWidth, fWidth, cHeight, nHeight, fHeight, callback) { var el = document.getElementById(eID); if (el == null) return; //document.write("do the Frame"); cLeft = moveSingleVal(cLeft, nLeft, fLeft); cTop = moveSingleVal(cTop, nTop, fTop); cWidth = moveSingleVal(cWidth, nWidth, fWidth); cHeight = moveSingleVal(cHeight, nHeight, fHeight); el.style.left = Math.round(cLeft) + 'px'; el.style.top = Math.round(cTop) + 'px'; el.style.width = Math.round(cWidth) + 'px'; el.style.height = Math.round(cHeight) + 'px'; if (cLeft == nLeft && cTop == nTop && cHeight == nHeight && cWidth == nWidth) { if (callback != null) callback(); return; } setTimeout('doFrame("' + eID + '",' + cLeft + ',' + nLeft + ',' + fLeft + ',' + cTop + ',' + nTop + ',' + fTop + ',' + cWidth + ',' + nWidth + ',' + fWidth + ',' + cHeight + ',' + nHeight + ',' + fHeight + ',' + callback + ')', 40); } function moveSingleVal(currentVal, finalVal, frameAmt) { if (frameAmt == 0 || currentVal == finalVal) return finalVal; currentVal += frameAmt; if ((frameAmt > 0 && currentVal >= finalVal) || (frameAmt < 0 && currentVal <= finalVal)) { return finalVal; } return currentVal; } </script> <!--[if lt IE 7 ]> <script src="/Scripts/dd_belatedpng.js"></script> <script>DD_belatedPNG.fix("img, .png_bg");</script> <![endif]--> </body> </html>
Meta Description
Not available
Meta Keywords
Not available
Most Recent Data
0 hours, 0 minutes ago

Historical Data

DateStatusServer
8/5/2025, 1:45:09 AMActiveMicrosoft-IIS/10.0
5/27/2025, 11:33:40 AMActiveMicrosoft-IIS/10.0

About Website Uptime Monitoring

Use the Who.is uptime information to track the availability and server information of websites. This helps track:

  • Website availability and response status
  • Server software and configuration
  • Meta information including titles and descriptions
  • Historical uptime patterns

This information is valuable for website owners, system administrators, and anyone interested in monitoring website reliability and performance.


Disclaimer: Who.is is not affiliated with, endorsed by, or connected to any of the domains displayed on this page. We provide this information as a public service for informational purposes only.

Want to reliably monitor your website's status?

We provide 24/7 monitoring with instant alerts, detailed statistics, and customizable checks. Perfect for keeping your website reliable and your users happy.

Try Free Website Monitoring

One website free. No credit card required.

Metrics we monitor

  • Uptime Percentage: The percentage of time your website is accessible
  • Response Time: How quickly your server responds to requests
  • Status Codes: HTTP response codes indicating server status