Sunucu yanıtını kontrol edin

Sunucu yanıtı
NS kayıtları
Whois alanı
Yanıt başlıkları
İstek başlıkları
Ham HTML kodu
200 OK - ati17.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Cache-Control: private
Content-Type: text/html; charset=utf-8
Server: Microsoft-IIS/7.5
X-AspNet-Version: 4.0.30319
Date: Sat, 31 May 2025 04:23:52 GMT
Content-Length: 32288

HTTP Kodu 200 OK

200 durum kodu, standart bir başarılı HTTP sunucu yanıtıdır. Bu, istemcinin isteğinin (örneğin, bir tarayıcıdan) başarıyla işlendiği ve sunucunun istenen verileri ilettiği anlamına gelir.

Kod 200 ne zaman kullanılır?

  • Bir web sayfası yüklenirken
  • Bir API yanıtı başarıyla alındığında
  • Bir form veya başka bir HTTP isteği işlenirken

Kod 200 kullanıcı için ne anlama gelir?

Kullanıcı içeriği hatasız alır ve sayfa veya uygulama düzgün çalışır. Kod 200'e veri eşlik ediyorsa, tarayıcı veya program bunu işler ve kullanıcıya görüntüler.

GET / HTTP/1.1
Host: ati17.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1"><title>
	首页-中邦兴业
</title><link href="css/index.css?ran=211" rel="stylesheet" type="text/css" /><link href="css/pclunbo.css" rel="stylesheet" type="text/css" />
   
    <script src="js/jquery-1.7.1.min.js" type="text/javascript"></script>
   
    <link href="/img/zhongbang.ico" rel="shortcut icon" />
    <script type="text/javascript">
        $(function () {

            if (isMobile() == true) {

                window.location.href = "/Mobile/Index.aspx";
            }
            $(".jssorb111").hide();
            // GetProductType();
            //            if ($("#hidprotype").val() == "") {
            //                $("#hidprotype").val(111);
            //            }

            //首页
            if ($("#hidnavtype").val() == "") {
                $("#hidnavtype").val("101");
                $(".nav_con li[data-id=" + $("#hidnavtype").val() + "]").addClass("on").siblings().removeClass("on");
            }

            if ($("#hidprotype").val() == "111") {
                //查询粒子下的产品
                GetLizi($("#hidlizitype").val());
            }
            $(".type li[data-id=" + $("#hidprotype").val() + "]").addClass("on").siblings().removeClass("on");
            $("#lizitype li[data-id=" + $("#hidlizitype").val() + "]").addClass("on").siblings().removeClass("on");


            //            $(".type2 li").live("click", function () {
            //                var id = $(this).attr("data-id");
            //                $(".type2 li[data-id=" + id + "]").addClass("on").siblings().removeClass("on");
            //                $("#hidlizitype").val(id);
            //                GetLizi(id);
            //            })

            GetFuWu();
            if ($("#hidtype").val() == "") {
                $("#hidtype").val("101");
            }
            if ($("#hidnewtype").val() == "") {
                $("#hidnewtype").val("1");
            }
            GetNews($("#hidnewtype").val());

            //            $(".new_type li").live("click", function () {
            //                var id = $(this).attr("");
            //            })

            $(".type li").on("mouseover", function () {
                var name = $(this).prop("className");
                if (name == "on") {
                } else {
                    $(this).addClass("on");
                }
            })
            $(".type li").on("mouseout", function () {
                $(this).removeClass("on");
                $(".type li[data-id=" + $("#hidprotype").val() + "]").addClass("on").siblings().removeClass("on");
            })
            $(".type li").live("click", function () {
                var id = $(this).attr("data-id");
                if (id == "111") {
                    window.location.href = "Lizi.aspx?type=111";
                } else {
                    window.location.href = "Product.aspx?type=" + id;
                    $("#hidprotype").val(id);
                }

            })
            //点击粒子类型

            $("#lizitype li").live("click", function () {
                var id = $(this).attr("data-id");
                $("#hidlizitype").val(id);
                $("#lizitype li[data-id=" + $("#hidlizitype").val() + "]").addClass("on").siblings().removeClass("on");

                GetLizi(id);

            })
            //新闻中心类型
            $(".new_type li").live("click", function () {
                var id = $(this).attr("data-id");
                $("#hidnewtype").val(id);
                $(".new_type li[data-id=" + $("#hidnewtype").val() + "]").addClass("on").siblings().removeClass("on");

                GetNews(id);

            })



        })

        //是移动端返回true,否则false
        function isMobile() {
            return (/phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone|webOS|android/i.test(navigator.userAgent))
        }

        function GetNews(type) {
            $.post("ajax/GetNews.ashx", { "type": type }, function (data) {
                if (data != "") {
                    var json = eval("(" + data + ")");
                    if (json.table.length > 0) {
                        var htm = "";
                        var htm2 = "";
                        var count = 0;
                        var count2 = 1;
                        $.each(json.table, function (idx, item) {
                            if (count2 == 1 && item.pic != "") {
                                $(".news_list .left").html(" <img src=" + item.pic + " />");
                                count2 = 2;
                            }
                            count++;
                            var myDate = new Date(item.time);
                            var mon = myDate.getMonth() + 1;
                            if (count == 1) {
                                htm += "<a href=\"NewInfo.aspx?newtype=" + type + "&id=" + item.id + "\">";
                                htm += "<div class=\"name\">" + item.title + "";

                                htm += "<span>" + myDate.getFullYear() + "-" + mon + "-" + myDate.getDate() + "</span> </div>";
                                htm += " <div class=\"text\">" + item.jianjie + "</div></a>";

                            } else {
                                htm2 += " <li><a href=\"NewInfo.aspx?newtype=" + type + "&id=" + item.id + "\">";
                                htm2 += " <p>" + item.title + "</p>";
                                htm2 += "<span>" + myDate.getFullYear() + "-" + mon + "-" + myDate.getDate() + "</span></a></li>";
                            }
                        })

                        $(".news_list .right .one ").html(htm);
                        $(".news_list .right .newlist ul").html(htm2);
                    } else {
                        $(".news_list .right .one ").html("");
                        $(".news_list .right .newlist ul").html("");
                    }
                }
            })
        }

        function GetFuWu() {
            $.post("ajax/GetFuWu.ashx", function (data) {
                if (data != "") {
                    var json = eval("(" + data + ")");
                    if (json.table.length > 0) {
                        var htm = "";
                        var htm2 = "";
                        var count = 0;
                        $.each(json.table, function (idx, item) {
                            count++;
                            if (count < 4) {
                                htm += "<a href=\"Service.aspx?id=" + item.id + "\" class=\"fuwu" + item.id + "\">";
                                htm += "<img src=" + item.pic + " />";
                                htm += "<p>" + item.title + "</p> </a>";
                            } else {
                                if (count == 4) {
                                    htm2 += " <a href=\"Service.aspx?id=" + item.id + "\" class=\"fuwu" + item.id + "\">";
                                    htm2 += "<img src=" + item.pic + " />";
                                    htm2 += "<p>" + item.title + "</p> </a>";
                                }
                            }
                        })
                        $(".fuwu_content .left ").html(htm);
                        $(".fuwu_content .right ").html(htm2);
                    }
                }
            })
        }
        //查询粒子产品
        function GetLizi(type) {
            $.post("ajax/GetLizi.ashx", { "type": type }, function (data) {
                if (data != "") {
                    var json = eval("(" + data + ")");
                    if (json.table.length > 0) {
                        var htm = "";
                        $.each(json.table, function (idx, item) {
                            htm += "<li><a href=\"liziinfo.aspx?id=" + item.id + "&type=" + type + "\">";
                            htm += "<img src=" + item.pic1 + ">";
                            htm += "<p>" + item.title + "</p>";
                            htm += "</a></li>";
                        })
                        $(".product_in_list ul").html("");
                        $(".product_in_list ul").html(htm);

                    } else {
                        $(".product_in_list ul").html("");
                    }
                } else {
                    $(".product_in_list ul").html("");
                }
            })
        }
      
    </script>
</head>
<body>
    <form name="form1" method="post" action="./" id="form1">
<div>
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwULLTEzMDQzOTE3ODYPZBYCAgMPZBYGAg0PFgIeCWlubmVyaHRtbAXZAjxkaXY+PGEgaHJlZj1MaXppLmFzcHg/dHlwZT0xMTEgdGFyZ2V0PSJfYmxhbmsiPjxpbWcgZGF0YS11PSJpbWFnZSIgc3JjPS91cGxvYWQvNjM3ODc5NTEyNzExNDI4MTkxLmpwZyAvPjwvYT48L2Rpdj48ZGl2PjxhIGhyZWY9UHJvZHVjdC5hc3B4P3R5cGU9MyB0YXJnZXQ9Il9ibGFuayI+PGltZyBkYXRhLXU9ImltYWdlIiBzcmM9L3VwbG9hZC82Mzc5MzMyOTIwNTc5NzQ2MTQuanBnIC8+PC9hPjwvZGl2PjxkaXY+PGEgaHJlZj1TZXJ2aWNlLmFzcHg/aWQ9MSB0YXJnZXQ9Il9ibGFuayI+PGltZyBkYXRhLXU9ImltYWdlIiBzcmM9L3VwbG9hZC82Mzc4NTIyMDgyOTg2MDYwOTkuanBnIC8+PC9hPjwvZGl2PmQCDw8WAh8ABYAFIDxsaSBkYXRhLWlkPSIxMTEiID4gPHA+57KS5a2Q6K6h5pWw5ZmoPC9wPiA8aW1nIHNyYz0iaW1nL3R5cGUxLnBuZyIgLz48L2xpPiA8bGkgZGF0YS1pZD0xPiA8cD7mta7muLjoj4zph4fmoLflmag8L3A+IDxpbWcgc3JjPSIvdXBsb2FkLzYzNzg0MzE4MjM0MDYwMTQzOC5wbmciIC8+PC9saT4gPGxpIGRhdGEtaWQ9Mj4gPHA+5Zyo57q/55uR5o6n57O757ufPC9wPiA8aW1nIHNyYz0iL3VwbG9hZC82Mzc4ODQ5MDAxMDczNjU2OTEucG5nIiAvPjwvbGk+IDxsaSBkYXRhLWlkPTM+IDxwPumrmOaViOi/h+a7pOWZqOajgOa8j+ezu+e7nzwvcD4gPGltZyBzcmM9Ii91cGxvYWQvNjM3ODg0OTAxNDQzNjE1NjkxLnBuZyIgLz48L2xpPiA8bGkgZGF0YS1pZD00PiA8cD7msJTmtYHmtYHlnovku6o8L3A+IDxpbWcgc3JjPSIvdXBsb2FkLzYzNzg0MzE4Mjk3MzYwNDI2MC5wbmciIC8+PC9saT4gPGxpIGRhdGEtaWQ9NT4gPHA+57qv6JK45rG96LSo6YeP5qOA5rWL5LuqPC9wPiA8aW1nIHNyYz0iL3VwbG9hZC82Mzc4ODQ5MDI4ODU4MDMxOTEucG5nIiAvPjwvbGk+IDxsaSBkYXRhLWlkPTY+IDxwPuWFtuS7lueOr+Wig+mqjOivgeiuvuWkhzwvcD4gPGltZyBzcmM9Ii91cGxvYWQvNjM3ODQzMTgzMTQ5NDg5OTIwLnBuZyIgLz48L2xpPmQCEQ8WAh8ABYkBIDxsaSBkYXRhLWlkPTIgY2xhc3M9Im9uIj7nqbrmsJTnspLlrZDorqHmlbDlmaggPC9saT4gPGxpIGRhdGEtaWQ9Mz7mtrLkvZPnspLlrZDorqHmlbDlmaggPC9saT4gPGxpIGRhdGEtaWQ9NT7lnKjnur/nspLlrZDkvKDmhJ/lmaggPC9saT5kZPfJ2EXziYW2rbETUarM4aRF+Cb/xhQbsChwNpEcv6Z3" />
</div>

<div>

	<input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="90059987" />
	<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEdAAgS0yiKNTy2Yx7XKiSGtj5YQkWcGbeGgv+IHeaD1iNqF7ttH7EyASVBo4nzqgjxbEG+8cVXH64X5KTAzH8tn8TIJWcbkl6rBw1njH/5t1HmHwtGj8rL5w26koRtDMc+qYcp/CWRMcOnWBmpVDiLwtSs/2Eq+RI9WUmV78nRmMVYaBrJ1H0mUkXRocrCfe7R6oU7xkQrYjaOtjECvavN3jfH" />
</div>
    <input name="hidtype" type="hidden" id="hidtype" />
    <input name="hidprotype" type="hidden" id="hidprotype" value="111" />
      <input name="hidlizitype" type="hidden" id="hidlizitype" value="2" />
        <input name="hidnavtype" type="hidden" id="hidnavtype" />
         <input name="hidnewtype" type="hidden" id="hidnewtype" />
    <div>
        

<head>
    <script type="text/javascript">
        $(function () {


            //            $.post("ajax/GetProductType.ashx", function (data) {
            //                if (data != "") {
            //                    var json = eval("(" + data + ")");
            //                    if (json.table.length > 0) {
            //                        var htm = "<li ><a data-id=101 class=\"on\" href=\"Index.aspx\">首页</a> </li>";
            //                        htm += " <li ><a data-id=111  href=\"Lizi.aspx?type=111\">粒子计数器</a> </li>"; //class=\"on\" 
            //                        $.each(json.table, function (idx, item) {
            //                            htm += "<li><a  data-id=" + item.id + " href=\"Product.aspx?type=" + item.id + "\">" + item.name + "</a> </li>";

            //                        })

            //                        $(".nav_con ul").html(htm);

            //                        if ($("#hidtype").val() != "") {
            //                            $(".nav_con ul li a[data-id=" + $("#hidtype").val() + "]").addClass("on").parent().siblings().children("a").removeClass("on");
            //                        }
            //                      

            //                    }
            //                }
            //            })


            $(".nav_con ul li a").live("mouseover", function () {
                var id = $(this).attr("data-id");
                $(".nav_con ul li a[data-id=" + id + "]").addClass("on");
                //                var onid = $(".nav_con ul li a[class='on']").attr("data-id");
                //                if (id != onid) {
                //                    $(".nav_con ul li a[data-id=" + id + "]").addClass("on");
                //                }
            })
            $(".nav_con ul li a").live("mouseout", function () {
                var id = $(this).attr("data-id");
                var onid = $(".nav_con ul li a[class='on']").attr("data-id");
                
                if (id != onid) {
                    $(".nav_con ul li a[data-id=" + id + "]").removeClass("on");
                }
             
                //                if (id == $("#hidnavtype").val()) {
                //                } else {
                //                    $(".nav_con ul li a[data-id=" + id + "]").removeClass("on");
                //                }
            })

            //            $(".nav_con ul li a").live("click", function () {

            //                var id = $(this).attr("data-id");
            //               
            //                $("#hidaaa").val(id);
            //               
            //            })
            $(".sou_btn").live("click", function () {
                var text = $(".sousuo").val();
                if (text == "") {
                    alert("请输入搜索内容");
                } else {

                    window.location.href = "Search.aspx?title=" + text;
                }
            })


        })
        //是移动端返回true,否则false
        function isMobile() {
            return (/phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone|webOS|android/i.test(navigator.userAgent))
        }
    </script>
</head>
<input name="Top1$hidtitle2" type="hidden" id="Top1_hidtitle2" />
<input name="Top1$hidaaa" type="hidden" id="Top1_hidaaa" />
<div class="top">
    <div class="top_content">
        <div class="hy">
            您好,欢迎访问北京中邦兴业科技有限公司!</div>
        <div class="tel">
            <img src="img/tel1.png" />
            <span>服务电话:</span>400-6872-158
        </div>
    </div>
    <div class="log">
        <div class="logo">
            <div class="img">
                <img src="img/logo.png" />
            </div>
            <div class="right">
                <input type="text" class="sousuo" placeholder="请输入关键词" />
                <img src="img/sousuo.png" class="sou_btn" />
            </div>
        </div>
    </div>
    <div class="nav">
        <div class="nav_con">
            <ul>
            <li ><a data-id=101 class="on" href="Index.aspx">首页</a> </li>
            <li ><a data-id=1  href="Service.aspx?id=1">产品研发销售</a> </li>
            <li ><a data-id=2  href="Service.aspx?id=2">全生命周期管理服务</a> </li>
            <li ><a data-id=3  href="Service.aspx?id=3">环境监测系统</a> </li>
            <li ><a data-id=4  href="Service.aspx?id=4">验证服务与实施</a> </li>
            <li ><a data-id=5 href="Introduce.aspx?id=5">社会责任</a> </li>
            <li ><a data-id=6  href="Introduce.aspx?id=6">联系我们</a> </li>
            </ul>
        </div>
    </div>
</div>

        <script src="js/PClunbo.js?v=345" type="text/javascript"></script>
        <div id="jssor_1" style="position: relative; margin: 0 auto; top: 0px; left: 0px;
            background-color: #000; width: 1920px; height: 500px; overflow: hidden; visibility: hidden;">
            <!-- Loading Screen -->
            <div id="jssor_11" data-u="slides" style="cursor: default; position: relative; top: 0px; left: 0px;
                width: 1920px; height: 500px; overflow: hidden;"><div><a href=Lizi.aspx?type=111 target="_blank"><img data-u="image" src=/upload/637879512711428191.jpg /></a></div><div><a href=Product.aspx?type=3 target="_blank"><img data-u="image" src=/upload/637933292057974614.jpg /></a></div><div><a href=Service.aspx?id=1 target="_blank"><img data-u="image" src=/upload/637852208298606099.jpg /></a></div></div>
            <div data-u="navigator" class="jssorb111" style="width: 200px;" data-scale="0.5">
                <div data-u="prototype" class="i" style="width: 30px; height: 30px; font-size: 16px;
                    line-height: 30px;">
                    <svg viewbox="0 0 16000 16000" style="position: absolute; top: 0; left: 0; width: 100%;
                        height: 100%; z-index: -1;">
                    <circle class="b" cx="8000" cy="8000" r="3000"></circle>
                </svg>
                    <div data-u="numbertemplate" class="n">
                    </div>
                </div>
            </div>
        </div>
        <script type="text/javascript">
            jssor_1_slider_init = function () {

                var jssor_1_SlideshowTransitions = [
              { $Duration: 800, x: 0.3, $During: { $Left: [0.3, 0.7] }, $Easing: { $Left: $Jease$.$InCubic, $Opacity: $Jease$.$Linear }, $Opacity: 2 },
              { $Duration: 800, x: -0.3, $SlideOut: true, $Easing: { $Left: $Jease$.$InCubic, $Opacity: $Jease$.$Linear }, $Opacity: 2 },
              { $Duration: 800, x: -0.3, $During: { $Left: [0.3, 0.7] }, $Easing: { $Left: $Jease$.$InCubic, $Opacity: $Jease$.$Linear }, $Opacity: 2 },
              { $Duration: 800, x: 0.3, $SlideOut: true, $Easing: { $Left: $Jease$.$InCubic, $Opacity: $Jease$.$Linear }, $Opacity: 2 },
              { $Duration: 800, y: 0.3, $During: { $Top: [0.3, 0.7] }, $Easing: { $Top: $Jease$.$InCubic, $Opacity: $Jease$.$Linear }, $Opacity: 2 },
              { $Duration: 800, y: -0.3, $SlideOut: true, $Easing: { $Top: $Jease$.$InCubic, $Opacity: $Jease$.$Linear }, $Opacity: 2 },
              { $Duration: 800, y: -0.3, $During: { $Top: [0.3, 0.7] }, $Easing: { $Top: $Jease$.$InCubic, $Opacity: $Jease$.$Linear }, $Opacity: 2 },
              { $Duration: 800, y: 0.3, $SlideOut: true, $Easing: { $Top: $Jease$.$InCubic, $Opacity: $Jease$.$Linear }, $Opacity: 2 },
              { $Duration: 800, x: 0.3, $Cols: 2, $During: { $Left: [0.3, 0.7] }, $ChessMode: { $Column: 3 }, $Easing: { $Left: $Jease$.$InCubic, $Opacity: $Jease$.$Linear }, $Opacity: 2 },
              { $Duration: 800, x: 0.3, $Cols: 2, $SlideOut: true, $ChessMode: { $Column: 3 }, $Easing: { $Left: $Jease$.$InCubic, $Opacity: $Jease$.$Linear }, $Opacity: 2 },
              { $Duration: 800, y: 0.3, $Rows: 2, $During: { $Top: [0.3, 0.7] }, $ChessMode: { $Row: 12 }, $Easing: { $Top: $Jease$.$InCubic, $Opacity: $Jease$.$Linear }, $Opacity: 2 },
              { $Duration: 800, y: 0.3, $Rows: 2, $SlideOut: true, $ChessMode: { $Row: 12 }, $Easing: { $Top: $Jease$.$InCubic, $Opacity: $Jease$.$Linear }, $Opacity: 2 },
              { $Duration: 800, y: 0.3, $Cols: 2, $During: { $Top: [0.3, 0.7] }, $ChessMode: { $Column: 12 }, $Easing: { $Top: $Jease$.$InCubic, $Opacity: $Jease$.$Linear }, $Opacity: 2 },
              { $Duration: 800, y: -0.3, $Cols: 2, $SlideOut: true, $ChessMode: { $Column: 12 }, $Easing: { $Top: $Jease$.$InCubic, $Opacity: $Jease$.$Linear }, $Opacity: 2 },
              { $Duration: 800, x: 0.3, $Rows: 2, $During: { $Left: [0.3, 0.7] }, $ChessMode: { $Row: 3 }, $Easing: { $Left: $Jease$.$InCubic, $Opacity: $Jease$.$Linear }, $Opacity: 2 },
              { $Duration: 800, x: -0.3, $Rows: 2, $SlideOut: true, $ChessMode: { $Row: 3 }, $Easing: { $Left: $Jease$.$InCubic, $Opacity: $Jease$.$Linear }, $Opacity: 2 },
              { $Duration: 800, x: 0.3, y: 0.3, $Cols: 2, $Rows: 2, $During: { $Left: [0.3, 0.7], $Top: [0.3, 0.7] }, $ChessMode: { $Column: 3, $Row: 12 }, $Easing: { $Left: $Jease$.$InCubic, $Top: $Jease$.$InCubic, $Opacity: $Jease$.$Linear }, $Opacity: 2 },
              { $Duration: 800, x: 0.3, y: 0.3, $Cols: 2, $Rows: 2, $During: { $Left: [0.3, 0.7], $Top: [0.3, 0.7] }, $SlideOut: true, $ChessMode: { $Column: 3, $Row: 12 }, $Easing: { $Left: $Jease$.$InCubic, $Top: $Jease$.$InCubic, $Opacity: $Jease$.$Linear }, $Opacity: 2 },
              { $Duration: 800, $Delay: 20, $Clip: 3, $Assembly: 260, $Easing: { $Clip: $Jease$.$InCubic, $Opacity: $Jease$.$Linear }, $Opacity: 2 },
              { $Duration: 800, $Delay: 20, $Clip: 3, $SlideOut: true, $Assembly: 260, $Easing: { $Clip: $Jease$.$OutCubic, $Opacity: $Jease$.$Linear }, $Opacity: 2 },
              { $Duration: 800, $Delay: 20, $Clip: 12, $Assembly: 260, $Easing: { $Clip: $Jease$.$InCubic, $Opacity: $Jease$.$Linear }, $Opacity: 2 },
              { $Duration: 800, $Delay: 20, $Clip: 12, $SlideOut: true, $Assembly: 260, $Easing: { $Clip: $Jease$.$OutCubic, $Opacity: $Jease$.$Linear }, $Opacity: 2 }
            ];

                var jssor_1_options = {
                    $AutoPlay: 1,
                    $Cols: 1,
                    $Align: 0,
                    $SlideshowOptions: {
                        $Class: $JssorSlideshowRunner$,
                        $Transitions: jssor_1_SlideshowTransitions,
                        $TransitionsOrder: 1
                    },
                    $BulletNavigatorOptions: {
                        $Class: $JssorBulletNavigator$
                    },
                    $ThumbnailNavigatorOptions: {
                        $Class: $JssorThumbnailNavigator$,
                        $Cols: 6,
                        $Orientation: 2,
                        $Align: 156
                    }
                };

                var jssor_1_slider = new $JssorSlider$("jssor_1", jssor_1_options);

                /*#region responsive code begin*/

                var MAX_WIDTH = 1920;

                function ScaleSlider() {
                    var containerElement = jssor_1_slider.$Elmt.parentNode;
                    var containerWidth = containerElement.clientWidth;

                    if (containerWidth) {

                        var expectedWidth = Math.min(MAX_WIDTH || containerWidth, containerWidth);

                        jssor_1_slider.$ScaleWidth(expectedWidth);
                    }
                    else {
                        window.setTimeout(ScaleSlider, 30);
                    }
                }

                ScaleSlider();

                $Jssor$.$AddEvent(window, "load", ScaleSlider);
                $Jssor$.$AddEvent(window, "resize", ScaleSlider);
                $Jssor$.$AddEvent(window, "orientationchange", ScaleSlider);
                /*#endregion responsive code end*/
            };
            
        </script>
        <script type="text/javascript">
            jssor_1_slider_init();
           
        </script>
        <div class="product">
            <div class="title">
                产品中心</div>
            <div class="title_e">
                Product Center</div>
            <div class="type">
                <ul id="pro_type"> <li data-id="111" > <p>粒子计数器</p> <img src="img/type1.png" /></li> <li data-id=1> <p>浮游菌采样器</p> <img src="/upload/637843182340601438.png" /></li> <li data-id=2> <p>在线监控系统</p> <img src="/upload/637884900107365691.png" /></li> <li data-id=3> <p>高效过滤器检漏系统</p> <img src="/upload/637884901443615691.png" /></li> <li data-id=4> <p>气流流型仪</p> <img src="/upload/637843182973604260.png" /></li> <li data-id=5> <p>纯蒸汽质量检测仪</p> <img src="/upload/637884902885803191.png" /></li> <li data-id=6> <p>其他环境验证设备</p> <img src="/upload/637843183149489920.png" /></li></ul>
            </div>
            <div class="type2">
                
                <ul id="lizitype"> <li data-id=2 class="on">空气粒子计数器 </li> <li data-id=3>液体粒子计数器 </li> <li data-id=5>在线粒子传感器 </li></ul>
            </div>
            <div class="product_in_list">
                <ul>
                  
                </ul>
            </div>
            <div class="title">
                公司服务</div>
            <div class="title_e" style="margin-bottom: 40px">
                Company Services
            </div>
        </div>
        <div class="fuwu">
            <div class="fuwu_content">
                <div class="left">
                   
                </div>
                <div class="right">
                 
                </div>
            </div>
        </div>
        <div class="news">
            <div class="title">
                新闻中心</div>
            <div class="title_e">
                News Center
            </div>
            <div class="new_type">
                <ul>
                    <li data-id=1 class="on">公司动态</li>
                    <li data-id=2>技术文章</li>
                </ul>
            </div>
            <div class="news_list">
                <div class="left">
                    <img src="img/new.png" />
                </div>
                <div class="right">
                    <div class="one">
                        <a href="">
                            <div class="name">
                            
                            </div>
                            <div class="text">
                               
                            </div>
                        </a>
                    </div>
                    <div class="newlist">
                        <ul>
                         
                        </ul>
                    </div>
                </div>
            </div>
        </div>
    </div>
    <script type="text/javascript">

        $(function () {
            window.setTimeout(function () {
                var width = $(".jssorb111").width();
                var width2 = $("#jssor_1").width();
                var result = (width2 - width) / 2;
                $(".jssorb111").css("left", result + "px");
                $(".jssorb111").show();

            }, 1000);

            //代码统计
            var _hmt = _hmt || [];
            (function () {
                var hm = document.createElement("script");
                hm.src = "https://hm.baidu.com/hm.js?f97bd13ebce7bd990828d99dd10708ba";
                var s = document.getElementsByTagName("script")[0];
                s.parentNode.insertBefore(hm, s);
            })();

        })
    </script>


    
    

<head>
    <script src="js/jquery-1.7.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
    $(function () {
        //产品类型
        $.post("ajax/GetProductType.ashx", function (data) {
            if (data != "") {
                var json = eval("(" + data + ")");
                if (json.table.length > 0) {
                    var htm = "";
                    htm += " <li><a href=\"Lizi.aspx?type=111\">粒子计数器</a> </li>";
                    $.each(json.table, function (idx, item) {
                        //  htm += " <li data-id=" + item.id + " class=\"on\">";
                        htm += "<li><a href=\"Product.aspx?type=" + item.id + "\">" + item.name + "</a> </li>";
                    })

                    $(".chanpin ul").html(htm);

                }
            }
        })
        //公司介绍
        $.post("ajax/GetIntroduce.ashx", function (data) {
            if (data != "") {
                var json = eval("(" + data + ")");
                if (json.table.length > 0) {
                    var htm = "";

                    $.each(json.table, function (idx, item) {
                        //  htm += " <li data-id=" + item.id + " class=\"on\">";
                        htm += "<li><a href=\"Introduce.aspx?id=" + item.id + "\">" + item.title + "</a> </li>";
                    })

                    $(".jieshao ul").html(htm);

                }
            }
        })

        //公司服务
        $.post("ajax/GetFuWu.ashx", function (data) {
            if (data != "") {
                var json = eval("(" + data + ")");
                if (json.table.length > 0) {
                    var htm = "";

                    $.each(json.table, function (idx, item) {

                        htm += "<li><a href=\"Service.aspx?id=" + item.id + "\">" + item.title + "</a> </li>";
                    })

                    $(".fuwu2 ul").html(htm);

                }
            }
        })

        //行业解决方案
        $.post("ajax/GetFangAn.ashx", function (data) {
            if (data != "") {
                var json = eval("(" + data + ")");
                if (json.table.length > 0) {
                    var htm = "";
                    $.each(json.table, function (idx, item) {
                        htm += "<li><a href=\"Solution.aspx?id=" + item.id + "\">" + item.title + "</a> </li>";
                    })
                    $(".fangan ul").html(htm);

                }
            }
        })
    })

</script>
</head>
   <div class="bottom">
            <div class="content">
                <div class="jieshao">
                    <h2>
                        公司介绍</h2>
                    <ul>
                      
                    </ul>
                </div>
                 <div class="chanpin">
                    <h2>
                        产品中心</h2>
                    <ul>
                       
                    </ul>
                </div>
                  <div class="fangan">
                    <h2>
                        行业解决方案</h2>
                    <ul> 
                        
                    </ul>
                </div>
                  <div class="fuwu2">
                    <h2>
                        公司服务</h2>
                    <ul>
                      
                       
                    </ul>
                </div>
                  <div class="news2">
                    <h2>
                        新闻中心</h2>
                    <ul>
                        <li><a href="NewsList.aspx?newtype=1">公司动态</a> </li>
                        <li><a href="NewsList.aspx?newtype=2">技术文章</a> </li>
                      
                    </ul>
                </div>
                  <div class="lianxi">
                    <h2>
                        联系我们</h2>
                    <ul>
                        <li><p>咨询热线:400-687-2158</p></li>
                        <li><p>公司地址:北京市海淀区上地十街辉煌国际东6号3层</p></li>
                      <li><p>厂区地址:北京市房山区燕山燕房路高坡8号</p></li>
                      <li>
                      <img src="img/code.png" />
                      </li>
                       
                    </ul>
                </div>
            </div>
        </div>
    </form>
</body>
</html>
                               

Alan adının whois bilgisi

Domain Name: ATI17.COM
Registry Domain ID: 1727922510_DOMAIN_COM-VRSN
Registrar WHOIS Server: grs-whois.hichina.com
Registrar URL: http://www.net.cn
Updated Date: 2023-06-21T05:33:30Z
Creation Date: 2012-06-18T03:07:35Z
Registry Expiry Date: 2029-06-18T03:07:35Z
Registrar: Alibaba Cloud Computing (Beijing) Co., Ltd.
Registrar IANA ID: 420
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +86.95187
Domain Status: ok https://icann.org/epp#ok
Name Server: DNS27.HICHINA.COM
Name Server: DNS28.HICHINA.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-31T04:23:34Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
TERMS OF USE: You are not authorized to access or query our Whois
by the following terms of use: You agree that you may use this Data only
to: (1) allow, enable, or otherwise support the transmission of mass