Tuesday, February 22, 2011

A very light-weight Database Access Layer, 400 lines

A very light-weight Database Access Layer,  400 lines

Datagrid example by JQuery template in ASP.NET MVC

Datagrid example by JQuery template in ASP.NET MVC

How to filter out space in textbox by JQuery?

How to filter out space in textbox by JQuery?
    $("#<%=TextBox.ClientID %>").keyup(function () {
        var trimspace = $("#<%=TextBox.ClientID %>").val().trim();
        $("#<%=TextBox.ClientID %>").val(trimspace);
    });

Sunday, February 20, 2011

How to deal with exception: "A potentially dangerous Request.Form value was detected from the client" in ASP.NET Webform

Cause: the content user posts in the textbox includes bracket: < >. "Request validation detects potentially malicious client input and throws this exception to abort processing of the request"

You can turn off this validation by:

  <location path="pagename.aspx">
    <system.web>
      <httpRuntime requestValidationMode="2.0" />
      <pages validateRequest="false" />
    </system.web>
  </location>

Reference:
http://msdn.microsoft.com/en-us/library/system.web.httprequestvalidationexception.aspx

Saturday, February 19, 2011

How to test your email function without SMTP server?

How to test your email function without SMTP server?
Add following setting into web,config. All of email will be sent to the fold you assigned.

<system.net>
    <mailSettings>
        <smtp deliveryMethod="SpecifiedPickupDirectory">
            <specifiedPickupDirectory pickupDirectoryLocation="c:\emailtest\" />
        </smtp>
    </mailSettings>
</system.net>