16 December 2013

Find last digit of a Number

Base/Power 1 2 3 4 1 1 1 1 1 2 2 4 8 6 3 3 9 7 1 4 4 6 4 6 5 5 5 5 5 6 6 6 6 6 7 7 9 3 1 8 8 4 2 6 9 9 1 9 1                                                        Base/Power Table This is the Base/Power table to find last digit of a number. A power of 4 will be iterative after it all pattern will repeat, so we are...
Read More...

Find last digit of a Number

Base/Power 1 2 3 4 1 1 1 1 1 2 2 4 8 6 3 3 9 7 1 4 4 6 4 6 5 5 5 5 5 6 6 6 6 6 7 7 9 3 1 8 8 4 2 6 9 9 1 9 1                                                        Base/Power TableThis is the Base/Power table to find last digit...
Read More...

15 December 2013

Skip windows 8 logon screen

If you have got bore to login your screen and you don't want to login every times then there are few steps to hide logon screen in windows 8.Step 1:  Hit Windows key + R then, type netplwiz and Click OKStep 2: Uncheck the box as shown in belowed picture:Step 3: You will we ask for password when you will click ok. Type your selected Account password. After boot it will not take password.@Enjoy Technolo...
Read More...

Session Handling in PHP

IntroductionSession is the way to handle client connection at the server side. For establish communication with server, client need to register their self by session. Once the session has created, server will be able to listen the client request. In PHP we can create session eaisly by using single function.Session creationSyntax:<?phpsession_start();$_SESSION[id]=value;?>we can use this session variable in another page by using this global session variable. For access session variable, we can use general method for using...
Read More...

13 December 2013

Chat Program in asp.net using Microsoft.AspNet.SignalR

 Introduction:A few days ago Microsoft has added new feature of SignalIR. It working is as like Jabber application for real time application. i.e Live chat, Online gaming, Online Shopping, news weather etc. It is most prominent feature to build such type of application. It provides simple ASP.Net Api remote procedure call using JavaScript in client browser using server side .Net Program.ImplementationTo implement this feature you should have .Net 4.5 Framework and visual studio Express 2012. This program is written for...
Read More...

Login Interface in Asp.net

Source Code Link:   CompleteLogin (10 KB)IntorductionLogin Interface is most useful for knowing that who is accessing your website and protecting to unauthorized comments and access. In asp.net to implement login interface is quit easy. Platform needed: Visual Studio 12DescriptionThere are some steps to implements:Step 1:First of create an login form as given by drag and drop property of visual Studio 12<form method=”get” action=”validate.aspx” ><input id=”Text1″ type=”text” name=”username” style=”border-color:#0094ff;border-width:1px;border-radius:2px;margin-left:30px;color:#0094ff;opacity:0.7;”...
Read More...