List/Grid

Tutorial Subscribe to Tutorial

How to display a Yes/No dialog box in Android?

How to display a Yes/No dialog box in Android?

You can use alert box with Yes/No option for lots of reasons. I used this option to confirm if user wants to close my application. Thus, when user clicks back… Read more »

Get source code from APK file – Android Programming

Get source code from APK file – Android Programming

While i was developing my android applications, i deleted one of my applications by mistake. Luckily, i had the .apk file and finally i was able to extract all the… Read more »

Convert an HTML table to CSV using PHP

Convert an HTML table to CSV using PHP

Here is a tutorial to convert a HTML table to CSV using php. To do this, we will need two php files: 1. table.php (where you create your table) 2…. Read more »

Identify the points of diagonal of a rectangle

This JavaScript will find the points of diagonal of a rectangle and draw a line on it. // display line between graph function drawLine( Ax, Ay, Bx, By) { Ax… Read more »

Blank ASPX page rendered

I was trying to open my running ASPX page, after doing some minor modification. And in response what I got is blank page. In view source it only shows <!DOCTYPE… Read more »

Using <%= %> or <%# %> in ASP.NET

Have you ever encountered a scenario where you really wanted to render some server side variables directly on ASP.NET design. I was writing one user control where I to achieve… Read more »

SQL Optimization Tips

Use views and stored procedures instead of heavy-duty queries. This can reduce network traffic, because your client will send to server only stored procedure or view name (perhaps with some… Read more »

Create Custom Facebook Fan Pages

1. Choose your own domain and you can also use Google sites to host your pages. What all you need to put in the page is totally your choice. Create… Read more »

How to install and configure VSFTPD linux

How to install and configure VSFTPD linux

You can install vsftpd on Ubuntu / Debian, CentOS /Fedora and RHEL linux. Installing vsftpd on Ubuntu or Debian sudo apt-get install vsftpd Installing vsftpd on CentOS / Fedora yum… Read more »

How to Send Email from a PHP Script Using SMTP Authentication?

How to Send Email from a PHP Script Using SMTP Authentication?

To send email using a remote mail client in PHP with SMTP authentication, here is the code: <?php require_once “Mail.php”; $from = “Sender Name <sender@example.com>”; $to = “Recipient Name <recipient@example.com>”;… Read more »