Tag: Development

Community

Regular Expressions

(Paul) Regular expressions is one of ways of search substrings in strings. It is carried out by means of viewing a string in searches of some pattern. A well-known example can be symbols “*” and “?”, used in command line DOS. First of them replaces a zero or more any symbols, the second – one any sy

Community

Model View Presenter with ASP.NET

(Billy McCafferty) After years of maintaining thousands of lines of ASP spaghetti code, Microsoft finally gave us a first class web development platform: ASP.NET. ASP.NET instantly brought a basic separation of concerns between presentation and business logic by introducing the code-behind page.

Community

VSTS and testing today part 2

(George Lawton) Testing tools have long been disparate, and often far removed from development processes. Bringing better integration to test and development is one of Visual Studio Team System’s main goals. VSTS tries to make test and report correlation easier by providing a full-featured tool; yet

Community

The Benefits of a Page Class

(Brian Mains) Partial classes are a great new feature for the .Net 2.0 framework, because they can separate code into several classes, which is especially useful when working with large files. I always had the assumption, though, that I had to inherit directly from the Page class for this to work, b