Thursday 28 May 2015

Windows 10 Serial Keys, Product Key Technical Preview, Consumer Preview 2015



Download Windows 10(32,64,86) Insider Preview ISO:-

Follow these steps to download Insider Preview:
  • Sign up for the Windows Insider Program, if you haven't already.
  • Click one of the Download links on this page to download a special file—it's called an ISO file—that you can use to install the preview.
  • When the download is complete, transfer the ISO file to installation media such as a USB flash drive or DVD.
  • Double-tap or double-click setup.exe from the installation media, and then follow the steps.


Download the Windows 10 with Serial and Product Key Absolutely Free

Upgrade your old Windows 7 or 8.1 with the newly built authorised version of Windows 10 for absolutely free. Technical preview version which has been relinquished by the Microsoft to enrich the user interface on par with the past operating systems. Right Microsoft has released the consumer preview while it is anticipated that enterprise preview would be launched soon.  Windows 10 ISO technical preview is available in both 32-bit and 64-bit versions what all a user has to do is that he needs to head over to the Windows Insider Program page and join the Insider Program. After downloading the ISO image copy of Windows 10, you can either install and test it in a virtual machine such as VirtualBox or install Windows 10 on your PC from USB drive.
User has the choice of downloading and installing Windows 10 in a virtual machine such as VirtualBox or install Windows 10 on your PC from USB drive or CD/DVD drive, after downloading the ISO image copy of Windows 10, you can either install and test it in a virtual machine such as VirtualBox or install Windows 10 on your PC from USB drive. Users should have a product code or serial key to install the Windows 10 OS on a virtual machine or on a space PC and to complete the task of installation. The product code or serial key for the Windows 10 technical preview would be common to all, users can figure it out after the successful installation of the technical preview which was followed by downloading Windows 10 ISO image after joining the Insider Program.

How to Download Windows 10 with Product Code and Serial Key

If you are downloading Windows 10 after downloading the ISO image and failed to note down the product or serial key  then here are two working approved serial keys which could assist you in downloading the Windows 10 ISO in your Windows PC/laptop.
Windows 10 Product Code and Serial Key:  Enter the below-mentioned Windows 10 product code and serial key of technical preview version which are common for all and accepted by the Microsoft.

Windows  10 Serial Key: NKJFK-GPHP7-G8C3J-P6JXR-HQRJR
Windows  10 Serial Key Technical Preview for Consumer: 334NH-RXG76-64THK-C7CKG-D3VPT
Technical Preview for Enterprise: PBHCJ-Q2NYD-2PX34-T2TD6-233PK
Enter the above illustrated serial key of Windows 10 in the required boxes when asked during the installation of Windows 10 IOS  technical preview. Readers may note the given product codes or serial keys work for both the 34bit and 64bit operating systems of Windows 10.

Friday 22 May 2015

MaintainScrollPositionOnPostback is not working

Maintain Scroll Position On Post-back is not working -                            how to debug ?

Introduction:

In this article I will explain how to scroll or move to particular div content when we click on particular link or item using JQuery in asp.net.
It have 2 exampale: Exa1 and Exa2

Description

Generally in some of websites we will see effects like whenever we click on one particular hyperlink or button automatically page will moved to particular content this kind of feature we can implement by using jQuery Scroll event. For that we need to write the code like as shown below in your page



Exa1 :

This is a small example how to maintain scroll position of the page/div during refresh with the help of several lines of javascript code:

Here is the code:

</script>

// function saves scroll position

function fScroll(val)
{
    var hidScroll = document.getElementById('hidScroll');
    hidScroll.value = val.scrollTop;
}

// function moves scroll position to saved value
function fScrollMove(what)
{
    var hidScroll = document.getElementById('hidScroll');
    document.getElementById(what).scrollTop = hidScroll.value;
}
</script>
</head>

<body onload="fScrollMove('div_scroll');" onunload="document.forms(0).submit()";>
<form>
<input type="text" id="hidScroll" name="a">< /br>
<div id="div_scroll" onscroll="fScroll(this);"
style="overflow:auto;height:100px;width:100px;">

.. VERY LONG TEXT GOES HERE

</div>
</form>
</body>
</html>
*************************************************************************************



Exa2 :


<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>jquery scroll to particular position/item when click on link</title>
</head>
<body>
<form id="form1" runat="server">
<div >
<p><a id="top">Menu:</a> <!-- Anchor tag placed around the word "Menu" so menu will always be visible -->
<a href="#middle" class="scroll">Middle</a> <a href="#bottom" class="scroll">Bottom</a></p>
<div style="background-color:#c00width:50%height:1500px;">Top</div>
<p><a id="middle">Menu:</a> <!-- Anchor tag placed around the word "Menu" so menu will always be visible -->
<a href="#top" class="scroll">Top</a> <a href="#bottom" class="scroll">Bottom</a></p>
<div style="background-color:#2d80e8width:50%height:1500px;">Middle</div>
<p><a id="bottom">Menu:</a> <!-- Anchor tag placed around the word "Menu" so menu will always be visible -->
<a href="#top" class="scroll">Top</a> <a href="#middle" class="scroll">Middle</a>
<div style="background-color:#21b81ewidth:50%height:1500px;">Bottom</div>
</div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script  type="text/javascript">
$(document).ready(function() {
$(".scroll").click(function(event) {
$('html,body').animate({ scrollTop: $(this.hash).offset().top }, 500);
});
});
</script>
</form>
</body>
</html>


Live Demo

To test click on the links TOP, Middle and Bottom links whenever you click on particular link automatically it will moved to that position



Menu: Middle Bottom
Top
Menu: Top Bottom
Middle
Menu: Top Middle
Bottom

Bhabani Facebook