Ads 468x60px

Pages

Blogroll

Monday, November 7, 2011

None

\"" + file + "\" 

  <appSettings configSource=".\App_Config\AppSettings.config"/>
  <connectionStrings configSource=".\App_Config\ConnectionStrings.config"/>

&amp;
http://www.degraeve.com/reference/specialcharacters.php

Bullet (•) &#8226;
Cent sign (¢) &#162;
Copyright sign (©) &#169;
Degree sign (°) &#176;
Em dash (—) &#8212;
Euro symbol (€) &#8364;
Heart symbol (♥) &#9829;
Inverted exclamation (¡) &#161;
Inverted question (¿) &#191;
Non-breaking space &#160;
Pi (π) &#960;
Pound sterling (£) &#163;
Registered trademark sign (®) &#174;
Section sign (§) &#167;
Trademark sign (™) &#153;
Umlout o (ö) &#246;
Yen symbol (¥) &#165;




http://blog.tomasjansson.com/2011/08/securing-your-asp-net-mvc-3-application/#comment-74

Phalangar allows using PHP as a coding language on .NET framework

Make Mouse Busy


 if ($("#AjaxResponsetWaitingCover").length == 0) {
        var $newdiv1 = $('<div id="AjaxResponsetWaitingCover" style="display:none;"></div>');
        $('body').append($newdiv1);
    }


  $(document).ajaxStart(function () {
            var waitCover = $("#AjaxResponsetWaitingCover");
            waitCover.height($("body").height());
            waitCover.width($("body").width());
            waitCover.show();
            window.status = "Wait...";
    });
    $(document).ajaxStop(function (data) {
            $("#AjaxResponsetWaitingCover").hide();
            window.status = "Done";
    });

#AjaxResponsetWaitingCover
{
    display: block;
    color: White;
    background-color: Gray;
    left: 0;
    top: 0;
    opacity: 0.0;
    filter: alpha(opacity=0);
    position: absolute;
    width: 100%;
    z-index: 9001;
    cursor: wait !important;    
}