Saturday, January 21, 2012

 

Video http://www.youtube.com/user/techstarstv 

from the http://www.techstars.org program

Do more faster by joining forces with the#1 startup accelerator in the world.

http://www.techstars.com/

posted on Saturday, January 21, 2012 11:34:00 PM (GMT Standard Time, UTC+00:00)  #    Comments [0] Trackback
 Tuesday, November 15, 2011

Implementando consultas de texto em dynamic data searches.

 

Copiar a pasta DynamicData\Filters folder

Criar um botão adequado no template apropriado

por exemplo em List.aspx

<asp:Button ID="searchButton" runat="server" Text="Search" OnClick="SearchButton_Click" />

 

no codebehind

 

coloque

protected void SearchButton_Click(object sender, EventArgs e)

{

((IQueryableDataSource)this.GridDataSource)

.RaiseViewChanged();

}

 

Veja mais detalhes no Blog de Jeroen Trappers

posted on Tuesday, November 15, 2011 2:20:33 AM (GMT Standard Time, UTC+00:00)  #    Comments [0] Trackback
 Wednesday, November 02, 2011

RegExLib.com, the Internet's first Regular Expression Library. Currently  have indexed 3256 expressions from 1916 contributors around the world.

 

More...

posted on Wednesday, November 02, 2011 10:13:25 PM (GMT Standard Time, UTC+00:00)  #    Comments [0] Trackback

This tool is a web-based regular expression validator for Javascript that lets you easily test and write regular expressions for Javascript

 

More...

posted on Wednesday, November 02, 2011 10:11:39 PM (GMT Standard Time, UTC+00:00)  #    Comments [0] Trackback

^(19|20)\d\d[- /.](0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])$ 

matches a date in yyyy-mm-dd format from between 1900-01-01 and 2099-12-31, with a choice of four separators. The anchors make sure the entire variable is a date, and not a piece of text containing a date. The year is matched by (19|20)\d\d. I used alternation to allow the first two digits to be 19 or 20. The round brackets are mandatory. Had I omitted them, the regex engine would go looking for 19 or the remainder of the regular expression, which matches a date between 2000-01-01 and 2099-12-31. Round brackets are the only way to stop the vertical bar from splitting up the entire regular expression into two options.

More...

posted on Wednesday, November 02, 2011 10:00:35 PM (GMT Standard Time, UTC+00:00)  #    Comments [0] Trackback
Page rendered at Monday, February 06, 2012 3:52:40 AM (GMT Standard Time, UTC+00:00)