Monday, December 27, 2010

Windows's Default Share c$

Because of Windows UAC, to allow c$ default share, you'll need to add the following key:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System

DWORD - LocalAccountTokenFilterPolicy and set the value to 1

Friday, December 24, 2010

Windows 2008 R2 random freezes

Microsoft has a hotfix for "a deadlock condition between the Lsass.exe process, the Redirected Drive Buffering Subsystem (Rdbss.sys) driver, and the Winsock kernel.

http://support.microsoft.com/kb/2265716

Wednesday, December 15, 2010

C# code formatting

http://www.manoli.net/csharpformat/format.aspx#html

For blogger.com, you'll need to use "Design" -> "Edit Html" -> Under <head>, paste
    <link href='http://www.manoli.net/csharpformat/csharp.css' rel='stylesheet' type='text/css'/>
See CSS paste below if you want to incorporate this
.csharpcode, .csharpcode pre
{
 font-size: small;
 color: black;
 font-family: Consolas, "Courier New", Courier, Monospace;
 background-color: #ffffff;
 /*white-space: pre;*/
}

.csharpcode pre { margin: 0em; }

.csharpcode .rem { color: #008000; }

.csharpcode .kwrd { color: #0000ff; }

.csharpcode .str { color: #006080; }

.csharpcode .op { color: #0000c0; }

.csharpcode .preproc { color: #cc6633; }

.csharpcode .asp { background-color: #ffff00; }

.csharpcode .html { color: #800000; }

.csharpcode .attr { color: #ff0000; }

.csharpcode .alt 
{
 background-color: #f4f4f4;
 width: 100%;
 margin: 0em;
}

.csharpcode .lnum { color: #606060; }

JQuery $.ajax call with custom error function

$.ajax({
        url: 'RequestSearchCertificate',
        type: "post",
        data: { registrationNumber: $('#ResultsRegistrationNumberValue').text(),
            changeNumber: $('#ResultsChangeNumberValue').text(),
            searchNumber: $('#ResultsSearchNumberValue').text()
        },
        success: function(response) {
            $('#GenerateCertificateResultDialog').html(response);
            $('#GenerateCertificateResultDialog').dialog("open");
        },
        error: function() {
            alert('error');
        }
    });