Tuesday, 6 October 2015

Windows Service Start Failure

After adding the custom service to Windows service list, the service starts but after few seconds, it stops working.

Solution: Application MUST use the Release build rather than debug build.


Tuesday, 29 September 2015

Partial-Page Rendering

Partial-page rendering removes the need for the whole page to be refreshed during postback. To do this, put the components under ContentTemplate as follow:


<asp:UpdatePanel ID="updatePanel" runat="server">
    <ContentTemplate>
        .
        .
        .      
    </ContentTemplate>
</asp:UpdatePanel>


Tuesday, 7 July 2015

Get SQL Data using PHP and Display using HTML

getSqlData.php

<?php
    header("Access-Control-Allow-Origin: *");
    header("Content-Type: application/json; charset=UTF-8");

    $conn = new mysqli("localhost", "root", "root", "World");
    $result = $conn->query("SELECT Code, Name, Region FROM Country");

    $outp = "[";
    while($rs = $result->fetch_array(MYSQLI_ASSOC))
    {
        if ($outp != "[")
            $outp .= ",";
       
        $outp .= '{"Code":"'. $rs["Code"] . '",';
        $outp .= '"Name":"' . $rs["Name"] . '",';
        $outp .= '"Region":"' . $rs["Region"] . '"}';
    }
    $outp .="]";

    $conn->close();
    echo($outp);
?>



index.html
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8" />
        <title></title>
    </head>
    <body>
        <div id="id01"></div>
        <script>
            var xmlhttp = new XMLHttpRequest();
            var url = "http://localhost/SampleWebSite/getSqlData.php";
            xmlhttp.onreadystatechange=function()
            {
                if (xmlhttp.readyState == 4 && xmlhttp.status == 200)
                    myFunction(xmlhttp.responseText);
                   
            }
            xmlhttp.open("GET", url, true);
            xmlhttp.send();
            function myFunction(response)
            {
                var arr = JSON.parse(response);
                var i;
                var out = "<table>";
                for(i = 0; i < arr.length; i++)
                {
                    out += "<tr>"+
                                "<td>" + arr[i].Code + "</td>" +
                                "<td>" + arr[i].Name + "</td>" +
                                "<td>" + arr[i].Region + "</td>"+
                            "</tr>";
                }
                out += "</table>";
                document.getElementById("id01").innerHTML = out;
            }
        </script>
    </body>
</html>



Sunday, 5 July 2015

No 'Access-Control-Allow-Origin' Header is Present on the Requested Resource

Add the following headers to the HTML file:

<!DOCTYPE html>
<html>
   <head>

      <?php
          header('Access-Control-Allow-Origin: *');
          header('Access-Control-Allow-Methods: GET, POST');
      ?>
.
.
.



Call PHP Method with Parameter from HTML

 <?php
     if (isset($_POST['getData']) and isset($_POST['country']))
     {       
        $servername = "localhost";
        $username = "root";
        $password = "root";
        $dbname = "World";

        // Create connection
        $conn = new mysqli($servername, $username, $password, $dbname);

        // Check connection
        if ($conn->connect_error) {
            die("Connection failed: " . $conn->connect_error);
        }
        $sql = "SELECT code, name FROM country where name='" .  $_POST['country'] . "';";
        $result = $conn->query($sql);

        if ($result->num_rows > 0) {
            // output data of each row
            while($row = $result->fetch_assoc()) {
                echo $row["code"]. " - " . $row["name"]. "<br>";
            }
        } else {
            echo "0 results";
        }
        $conn->close();
    }
?>


<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8" />
        <title></title>
    </head>
    <body>

       <form action="" method="post">
           Country: <input type="text" name="country">
           <input type="submit" name ="getData" value="send"></input>
        </form>

    </body>
</html>

Tuesday, 23 June 2015

Receive Yahoo Emails in Outlook 2013 using IMAP

  1. File > Add Account
  2. Manual setup or additional server types > Next
  3. IMAP > Next
  4. Account Settings:
    • Your Name: name show when sending email
    • Email address: Yahoo Mail address
    • Account Type: IMAP
    • Server information: match the Yahoo Mail IMAP settings
    • User Name: Yahoo ID
    • Password: Yahoo account password
    • Require logon using Secure Password Authentication: OFF
  5. More Settings > Outgoing Server tab
    • My outgoing server (SMTP) requires authentication: ON
    • Use same settings as my incoming mail server: ON
  6. Advanced tab settings:
    • Incoming server (POP3) 
      • imap.mail.yahoo.com
      • port: 993 
      • encrypted connection: SSL
    • Outgoing server (SMTP) 
      • smtp.mail.yahoo.com
      • port: 587 
      • encryption type: TLS
  7. Restart Outlook
  8. Send/Receive All Folders to sync


Analysis Service in Power BI Report Server

 We couldn’t connect to the Analysis Services server. Make sure you’ve entered the connection string correctly... link