Ray's Asp.net Blog
Answers and code snippets from ASP.NET projects (Webforms/MVC/Classic ASP)
Pages
(Move to ...)
Event registration app with QR/Paypal
Home
▼
Tuesday, February 22, 2011
A very light-weight Database Access Layer, 400 lines
A very light-weight Database Access Layer, 400 lines
https://github.com/robconery/massive/blob/master/Massive.cs
Datagrid example by JQuery template in ASP.NET MVC
Datagrid example by JQuery template in ASP.NET MVC
http://tpeczek.blogspot.com/2011/02/early-look-at-jquery-ui-grid-in-aspnet.html
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);
});
‹
›
Home
View web version