JavaScript


  



Using script display day/year name/time etc

Monday, December 10, 2012 4:10:07 PM

<head>

<script type="text/javascript">
      tday = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
      tmonth = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");

      function GetClock() {
          d = new Date();
          nday = d.getDay();
          nmonth = d.getMonth();
          ndate = d.getDate();
          nyear = d.getYear();
          nhour = d.getHours();
          nmin = d.getMinutes();
          nsec = d.getSeconds();

          if (nyear < 1000) nyear = nyear + 1900;

          if (nhour == 0) { ap = " AM"; nhour = 12; }
          else if (nhour <= 11) { ap = " AM"; }
          else if (nhour == 12) { ap = " PM"; }
          else if (nhour >= 13) { ap = " PM"; nhour -= 12; }

          if (nmin <= 9) { nmin = "0" + nmin; }
          if (nsec <= 9) { nsec = "0" + nsec; }


          document.getElementById('clockbox').innerHTML = "" + tday[nday] + ", " + tmonth[nmonth] + " " + ndate + ", " + nyear + " " + nhour + ":" + nmin + ":" + nsec + ap + "";
          setTimeout("GetClock()", 1000);
      }
      window.onload = GetClock;
</script>
<div id="Div1"></div>


</head>



For display Current Date  on page
For example as follow
    September 4, 2012

<div id="clock">
            <script type="text/javascript">
            <!--   // Array of month Names
            var monthNames = new Array( "January","February",
"March","April","May","June",
"July","August","September",
"October","November","December");
            var now = new Date();
            thisYear = now.getYear();
            if(thisYear < 1900) {thisYear += 1900}; // corrections if Y2K display problem
            document.write(monthNames[now.getMonth()] + " " + now.getDate() + ", " + thisYear);
            // -->
            </script>
         </div>





How to find system or client machine IP Address Using Jquery & Javascript in MVC4?



Step-1
Add Js  file
var ip_list = {};
function FoundIp(ip, type) {
    // type: 4=ipv4 6=ipv6 0=unknown (autodetect)
    if (type == 0) {
        type = 4;
        if (ip.indexOf(':') != -1) type = 6;
    }
    ip_list[ip] = type;
}

function MyIpIs() {
    for (ip in ip_list) {
        document.getElementById('myIp').innerHTML = ip;
    }
}

Step-2
Add Js  file
Add this 2 line in master page or page Head part
<head>
  <%--for IPFind js--%>       
        <script src="../../Scripts/ShowIP.js" type="text/javascript"></script>
          <script language="JavaScript" src="http://only-ip4.wimip.fr/ip.php"></script>
</head>


<body onload="MyIpIs();"></body>
<label id="myIp" style=" font-weight:bold"/>
Output

   1XX.1XX.1XX.135







How to find Current Date&Time Using Jquery & Javascript IN Asp.NET?

Please Check below code to get current DateTime using Jquery

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Get Current Datetime in JQuery</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js">
</script>
<script type="text/javascript" language="javascript">
    $(document).ready(function () {
        var param1 = new Date();
        var param2 = param1.getDate() + '/' + (param1.getMonth() + 1) + '/' + param1.getFullYear() + ' ' + param1.getHours() + ':' + param1.getMinutes() + ':' + param1.getSeconds();
        $('#lbltxt').text(param2)
    })
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<label id="lbltxt"/>
</div>
</form>
</body>
</html>

Please Check below code to get current DateTime using JavaScript


<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Get Current Datetime in JavaScript</title>
<script type="text/javascript" language="javascript">
    function GetDateTime() {
        var param1 = new Date();
        var param2 = param1.getDate() + '/' + param1.getMonth() + '/' + param1.getFullYear() + ' ' + param1.getHours() + ':' + param1.getMinutes() + ':' + param1.getSeconds();
        document.getElementById('lbltxt').innerHTML = param2;
    }
</script>
</head>
<body onload="GetDateTime()">
<form id="form1" runat="server">
<div>
<label id="lbltxt"/>
</div>
</form>
</body>
</html>
OutPut
14/11/2012 14:41:36




Disable the back & forward button of browser using java script

I show How to Disable the back & forward button of browser using java script.
Now I am going to show use java script.

Just copy following code in head of page, as shown below

<head runat="server">

<%-- this script for back & forword--%>
<SCRIPT type="text/javascript">
    window.history.forward();
    function noBack()
     {
         window.history.forward();
     }
</SCRIPT>

</head>
 You must be add code in body part.
 This code is work when page is onload & onupload

<body onload="noBack();"  onpageshow="if (event.persisted) noBack();" onunload="">









 Terms Conditions  using  JavaScript
Task
When I click Terms of use & Privacy Policy--------àthen new windows open

New windows as shown as per your requirement text area.


There are following step

STEP-I
Create New aspx page (TermsCondition.aspx)
STEP-II
In client side code -àadd in HEAD part you have to write JAVASCRIPT
STEP-III
Create 'TermsConditions.htm' in your appliction.
STEP-IV
OUTPUT
Build-àRun--àsee output

Step-I
Create New aspx page (TermsCondition.aspx)
Then
In client side code -àadd in body part

<body>
    <form id="form1" runat="server">
    <div>
    <center>
    <span style="font-size:9pxfont-family:Verdana">
    Copyright © 20011-2012 dotnetis.com. All rights reserved.<br />
<a href="" onclick="passdata();returnfalse;">Terms of use & Privacy policy </a>
    </span>
    </center>
   
    </div>
    </form>
</body>

STEP-II
In client side code -àadd in HEAD part you have to write JAVASCRIPT as shown below


<head runat="server">
    <title>Untitled Page</title>
      <%--//this function for showmodaldialog --%>
    <script type="text/javascript" language="javascript">
    function passdata()
    {
    //window.showModalDialog('TermsConditions.htm' , 'NewWindow', 'width=300 ,dialogHeight=150px, top=100, left=300,menubar=no,resizable=no,scrollbars=yes,status=yes,toolbars=no');
    window.showModalDialog('TermsConditions.htm','NewWindow','dialogWidth:400px; dialogHeight:300px; center:yes');
    }
// function PassData1()
//        {
//            window.showModalDialog('Privacy.htm' , 'NewWindow', 'width=300 ,dialogHeight=150px, top=100, left=300,menubar=no,resizable=no,scrollbars=yes,status=yes,toolbars=no');
//        }   
</script>
 </head>
Note :- see Highlight term, the html file and window.showmodaldialog name must be same
Step-III
THEN
Create 'TermsConditions.htm' in your appliction.
Right click-àAdd New Itemàselect HTML ITEM(TermsCondition.html)--àok
As shown in below code
<head>
    <title> dotnetis -Customized SMasdasS sdasdasda</title>
</head>
<body>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt"> dotnetis Terms of Service<?xml namespace="" ns="urn:schemas-microsoft-com:office:office"
            prefix="o" ?><o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">30-09-2008.<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">1. Your relationship with dotnetis <o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">1.1 Your use of dotnetis products, software, services
            and web sites &amp; web applications (referred to collectively as the “Services”
            in this document) is subject to the terms of a legal agreement between you and SMSWonders.
            “dotnetis” means ‘xyz Technologies Pvt. Ltd., based at 123, 1 b Image, efd
            Road, Bangalore-567450, India’.
            <o:p></o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">1.2 Unless otherwise agreed in writing with dotnetis,
            your agreement with SMSWonders will always include, at a minimum, the terms and
            conditions set out in this document.
            <o:p></o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">1.3 The Terms form a legally binding agreement between
            you and dotnetis in relation to your use of the Services. It is important that
            you take the time to read them carefully. Collectively, this legal agreement is
            referred to below as the “Terms”.<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">2. Accepting &amp; agreeing the Terms<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">2.1 In order to use the Services, you must first accept
            &amp; agree to the Terms. You may not use the Services if you do not accept the
            Terms. You can accept the Terms by clicking to accept or agree to the Terms, where
            this option is made available to you by dotnetis in the user interface for any
            Service; or <span style="mso-spacerun: yes">&nbsp;</span>by actually using the Services.
            In this case, you understand and agree that dotnetis will treat your use of the
            Services as acceptance of the Terms from that point onwards.<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">3. Provision of the Services by dotnetis <o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">3.1 dotnetis is constantly innovating in order to provide
            the best possible experience for its users. You acknowledge and agree that the form
            and nature of the Services which dotnetis provides may change from time to time
            without prior notice to you.<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">3.2 As part of this continuing innovation process, you
            acknowledge and agree that dotnetis may stop permanently or temporarily providing
            the Services or any features within the Services to you or to users generally at
            dotnetis sole discretion, without prior notice to you. You may stop using the
            Services at any time without need to inform to dotnetis.<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">3.3 You agree that if dotnetis disables access to your
            account, you may be prevented from accessing the Services or other content which
            is contained in your account.<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">3.4 dotnetis may stop your services on immediate basis
            (without any notice) if you are faulted on any payment terms, confidentiality or
            service agreements.<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">4. Use of Services by you<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">4.1 In order to access Services, you may be required to
            provide information about yourself such as identification or contact details as
            part of the registration process for the Service, or as part of your continued use
            of the Services. You agree that any registration information you give to dotnetis
            will always be accurate, correct and up to date.<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">4.2 You agree to use the Services only for purposes that
            are permitted by (a) the Terms and (b) any applicable law, regulation or generally
            accepted practices or guidelines in the relevant jurisdictions.<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">4.3 You agree not to access (or attempt to access) any
            of the Services by any means other than through the interface that is provided by
            dotnetis, unless you have been specifically allowed to do so in a separate agreement
            with dotnetis.
            <o:p></o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">4.4 You acknowledge and specifically agree that you will
            not engage in any activity that interferes with or disrupts the Services or the
            servers and networks which are connected to or form an integral part of the Services.<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">4.5 Unless you have been very specifically permitted to
            do so in a separate agreement with dotnetis, you acknowledge &amp; agree that
            you will not reproduce duplicate, copy, sell, trade, transfer, manipulate or resell
            the Services for any purpose by any means.<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">4.6 You agree that you are solely responsible for and
            that dotnetis has no responsibility to you or to any third party for any breach
            of your obligations under the Terms and for the consequences including any loss
            or damage which dotnetis may suffer of any such breach.
            <o:p></o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">4.7 You acknowledge &amp; specifically agree that you
            are solely responsible for transmitting the content using Services of dotnetis
            and dotnetis shall not be responsible for any legal or regulatory issues arising
            due to such transmission or use of Service. You agree that you will be solely responsible
            to   dotnetis ers or the regulatory authorities for all activities that occur under
            your account.<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">5. Your account security &amp; Use of your information<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">5.1 You agree that you are responsible for maintaining
            the confidentiality of passwords, content or any other data associated with any
            account you use to access the Services.<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">5.3 If you become aware of any unauthorized use of your
            account, you agree to notify dotnetis immediately through email.<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">5.4 We use your information to process and personalize
            your requests. We also use the information for support, billing, to develop new
            features, and to improve the overall quality of dotnetis products and services.
            We may also use the information to keep a history of your activity, to provide you
            with statistics about you or your use of our product or service, or to provide you
            with a better user experience. We may use your information to inform you about service,
            product updates, price changes or new launches or any such development which dotnetis
            deems is necessary to share with you.<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">5.5 We may share your information with certain third parties
            we use to perform certain functions, such as billing and text message or SMS delivery
            or any such necessary data transmission and storage. These third parties will be
            contractually bound to treat your information in accordance with the applicable
            dotnetis privacy policies.
            <o:p></o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">5.6 dotnetis does not sell any of your personal information.
            However, it may allow third parties, regulatory bodies &amp; authorities to use
            this information if required by law or any regulatory process.<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">6. Content in the Services<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">6.1 dotnetis reserves the right to pre-screen, review,
            flag, filter, monitor, modify, refuse or remove any or all Content from any Service.
            <o:p></o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">7. Proprietary &amp; Intellectual Proprietary rights<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">7.1 You acknowledge and agree that dotnetis own all
            legal &amp; commercial rights, title and interest in and to the Services, including
            any intellectual property rights which form part the Services. You further acknowledge
            that the Services may contain information which is designated confidential by dotnetis`
            and that you shall not disclose such information without dotnetis prior written
            consent.<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">7.2 Unless you have agreed otherwise in writing with dotnetis,
            nothing in the Terms gives you a right to use any of dotnetis trade names, trade
            marks, service marks, logos, domain names, and other distinctive brand features
            and identities.<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">8. Service termination
            <o:p></o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">8.1 dotnetis may at any time, terminate its legal agreement
            with you if:<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">(a) you have breached any provision of the Terms or have
            acted in manner which clearly shows that you do not intend to, or are unable to
            comply with the provisions of the Terms; or<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">(b) dotnetis is required to do so by law for example,
            where the provision of the Services to you is, or becomes, unlawful; or<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">(c) the partner with whom dotnetis offered the Services
            to you has terminated its relationship with dotnetis or ceased to offer the Services
            to you; or<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">(e) the provision of the Services to you by dotnetis
            is, in dotnetis no longer commercially viable.<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">9. Liability<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">9.1 You acknowledge &amp; agree that dotnetis, its subsidiaries
            and affiliates, and its licensors shall not be liable to you for:<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">(a) any direct, indirect, incidental, special consequential
            or exemplary damages which may be incurred by you, however caused and under any
            theory of liability. This shall include, but not be limited to, any loss of profit
            whether incurred directly or indirectly, any loss of goodwill or business reputation,
            any loss of data suffered, cost of procurement of substitute goods or services,
            or other intangible loss;<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">(b) the deletion of, corruption of, or failure to store,
            any content and other communications data maintained or transmitted by or through
            your use of the services;<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">(c) the continuity of the service if the network or service
            problem is from the<span style="mso-spacerun: yes">&nbsp; </span>third party service
            provider of dotnetis.<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">10. Other or third party content<o:p></o:p></span></p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">
            <o:p>&nbsp;</o:p>
        </span>
    </p>
    <p class="MsoNormal" style="margin: 0in 0in 0pt">
        <span style="font-size: 10pt">10.1 The Services may include hyperlinks to other web
            sites or content. dotnetis may have no control over any web sites or resources
            which are provided by other or third party companies or persons other than SMSWonders.
            You acknowledge and agree that dotnetis is not responsible by any means for the
            availability of any such external sites or resources, and does not endorse any advertising,
            products or other materials available from such web sites or resources. You acknowledge
            and agree that dotnetis is not liable for any loss or damage   material.<o:p></o:p></span></p>

</body>

STEP-IV

OUTPUT
Build-àRun--àsee output


Tabs


Tab 1 content goes here

Tab 2 content goes here

Tab 3 content goes here
Multi-Tabbed Widget | DotNetIs