How to? Subscribe to How to?
Get the IP address in ASP.NET
To get the ip address of client machine in asp.net use the following code snippet. private string GetUserIP() { string ip = Request.ServerVariables["HTTP_X_CLUSTER_CLIENT_IP"]; string trueIP = string.Empty; if (!string.IsNullOrEmpty(ip)) {… Read more
Facebook style mention
I was working on Facebook style mention and found this link http://stackoverflow.com/questions/8438371/style-text-inside-textarea-like-facebook-does this gives me initial setup, for css and html. later I added script to make it work. Added… Read more
How to create basic wordpress plugin
There are many things that you can do with your wordpress plugin to enhance your website that can also be used by other website owners. In this post we will… Read more
How to create Download File button using Java Servlets
Before you read this post i would recommend you to go through these earlier post to understand what we did and what we are going to do. Convert SVG to… Read more
How to use Java Servlets and Ajax
In previous post we saw an example of how to convert SVG to PNG using Java Servlet. You can either use a submit button to submit form to servlet or… Read more
Convert SVG to PNG using Java Servlet
I am going to cover several aspects of this project in other posts. In this post i will only cover how to convert SVG to png. I will use Batik… Read more
Puzzle, from a facebook page
5+3+2=151022 9+2+4=183652 8+6+3=482466 5+4+5=202541 Then 7+2+5= ______ ? first 2 digits of answer : first digit * second digit next two digit of answer : first digit * third digit… Read more
Shortcuts for Windows 8
Knowing at least some of the Windows 8 shortcuts keyboard will make your Windows 8 experience more and more enjoyable. Try to memorize these shortcuts Windows 8 shortcut keys. Windows… Read more
Cheat Whatsapp to Hide change late seen status time
You can confuse your friends and family changing last seen status on what app. Whatsapp server read your mobile timing and if you change your mobile timing then whatsapp will… Read more
How to uninstall internet explorer 10 from windows 8
The latest Windows 8 includes Internet Explorer 10 which feature with Metro style to provide fast and fluid browsing experience and navigation based on gesture. Although IE 10 deliver all… Read more


