Friday, 12 September 2014

Getting Query string value in aspx page

 <%# string.Format("{0}", Request.QueryString["value"])%>

Disable right click option using jquery

$(function(){
        $(this).bind("contextmenu", function(e){
        e.preventDefault();
          alert("right click is disabled"); //not recommended to give alert message
    });

});

Extracting Nupkg files using command line

Rename it to zip first then extract files as below 1.     Rename-Item -Path A_Package.nupkg -NewName A_Package.zip 2.     Make sure to repla...