<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Anomalist Design Blog</title>
	<atom:link href="http://www.anomalistdesign.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.anomalistdesign.com/blog</link>
	<description></description>
	<lastBuildDate>Fri, 07 May 2010 05:41:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Seminar Links</title>
		<link>http://www.anomalistdesign.com/blog/?p=48</link>
		<comments>http://www.anomalistdesign.com/blog/?p=48#comments</comments>
		<pubDate>Wed, 05 May 2010 02:52:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.anomalistdesign.com/blog/?p=48</guid>
		<description><![CDATA[Windows XP Pro
MSSQL or MySQL
Internet Access
Day 1
.NET Framework Background

What is it?

The Microsoft .NET Framework is a software framework that is available with several Microsoft Windows operating systems. It includes a large library of pre-coded solutions to common programming problems and a virtual machine that manages the execution of programs written specifically for the framework. The [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: small;">Windows XP Pro</span></p>
<p><span style="font-size: small;">MSSQL or MySQL</span></p>
<p><span style="font-size: small;">Internet Access</span></p>
<p><span style="font-size: large;"><strong>Day 1</strong></span></p>
<p><strong><span style="font-size: small;">.NET Framework Background</span></strong></p>
<ol>
<li><span style="font-size: small;">What is it?</span>
<ol type="A">
<li><span style="font-size: small;">The Microsoft .NET Framework is a software framework that is available with several Microsoft Windows operating systems. It includes a large library of pre-coded solutions to common programming problems and a virtual machine that manages the execution of programs written specifically for the framework. The .NET Framework is a key Microsoft offering and is intended to be used by most new applications created for the Windows platform.</span>
<ol>
<li><span style="font-size: small;">What is a framework? A software framework, in computer programming, is an abstraction in which common code providing generic functionality can be selectively overridden or specialized by user code providing specific functionality. Frameworks are a special case of software libraries in that they are reusable abstractions of code wrapped in a well-defined API, yet they contain some key distinguishing features that separate them from normal libraries.</span></li>
<li><span style="font-size: small;">What is a virtual machine?  A process VM, sometimes called an </span><strong><span style="font-size: small;">application virtual machine</span></strong><span style="font-size: small;">, runs as a normal application inside an OS and supports a single process. It is created when that process is started and destroyed when it exits. Its purpose is to provide a platform-independent programming environment that abstracts away details of the underlying hardware or operating system, and allows a program to execute in the same way on any platform.</span><span style="font-size: small;">A process VM provides a high-level abstraction — that of a high-level programming language (compared to the low-level ISA abstraction of the system VM). Process VMs are implemented using an interpreter; performance comparable to compiled programming languages is achieved by the use of just-in-time compilation.</span><span style="font-size: small;">This type of VM has become popular with the Java programming language, which is implemented using the Java virtual machine. Other examples include the Parrot virtual machine, which serves as an abstraction layer for several interpreted languages, and the .NET Framework, which runs on a VM called the Common Language Runtime.</span></li>
</ol>
</li>
<li><span style="font-size: small;">The pre-coded solutions that form the framework&#8217;s Base Class Library cover a large range of programming needs in a number of areas, including user interface, data access, database connectivity, cryptography, web application development, numeric algorithms, and network communications.  The class library is used by programmers, who combine it with their own code to produce applications. </span></li>
<li><span style="font-size: small;">Programs written for the .NET Framework execute in a software environment that manages the program&#8217;s runtime requirements. Also part of the .NET Framework, this runtime environment is known as the Common Language Runtime (CLR). The CLR provides the appearance of an application virtual machine so that programmers need not consider the capabilities of the specific CPU that will execute the program. The CLR also provides other important services such as security, memory management, and exception handling. The class library and the CLR together compose the .NET Framework. </span></li>
<li><span style="font-size: small;">Version 3.0 of the .NET Framework is included with Windows Server 2008 and Windows Vista. The current version of the framework can also be installed on Windows XP and the Windows Server 2003 family of operating systems. A reduced &#8220;Compact&#8221; version of the .NET Framework is also available on Windows Mobile platforms, including smartphones.</span></li>
<li><span style="font-size: small;">The core aspects of the .NET Framework lie within the Common Language Infrastructure, or CLI. The purpose of the CLI is to provide a language-neutral platform for application development and execution, including functions for exception handling, garbage collection, security, and interoperability. Microsoft&#8217;s implementation of the CLI is called the Common Language Runtime or CLR.</span></li>
<li><span style="font-size: small;">The intermediate CIL code is housed in .NET assemblies. As mandated by specification, assemblies are stored in the Portable Executable (PE) format, common on the Windows platform for all DLL and EXE files. The assembly consists of one or more files, one of which must contain the manifest, which has the metadata for the assembly. The complete name of an assembly (not to be confused with the filename on disk) contains its simple text name, version number, culture, and public key token. The public key token is a unique hash generated when the assembly is compiled, thus two assemblies with the same public key token are guaranteed to be identical from the point of view of the framework. A private key can also be specified known only to the creator of the assembly and can be used for strong naming and to guarantee that the assembly is from the same author when a new version of the assembly is compiled (required to add an assembly to the Global Assembly Cache).</span></li>
<li><span style="font-size: small;">All CLI is self-describing through .NET metadata. The CLR checks the metadata to ensure that the correct method is called. Metadata is usually generated by language compilers but developers can create their own metadata through custom attributes. Metadata contains information about the assembly, and is also used to implement the reflective programming capabilities of .NET Framework.</span></li>
<li><span style="font-size: small;">.NET has its own security mechanism with two general features: Code Access Security (CAS), and validation and verification. Code Access Security is based on evidence that is associated with a specific assembly. Typically the evidence is the source of the assembly (whether it is installed on the local machine or has been downloaded from the intranet or Internet). Code Access Security uses evidence to determine the permissions granted to the code. Other code can demand that calling code is granted a specified permission. The demand causes the CLR to perform a call stack walk: every assembly of each method in the call stack is checked for the required permission; if any assembly is not granted the permission a security exception is thrown.</span></li>
<li><span style="font-size: small;">When an assembly is loaded the CLR performs various tests. Two such tests are validation and verification. During validation the CLR checks that the assembly contains valid metadata and CIL, and whether the internal tables are correct. Verification is not so exact. The verification mechanism checks to see if the code does anything that is &#8216;unsafe&#8217;. The algorithm used is quite conservative; hence occasionally code that is &#8217;safe&#8217; does not pass. Unsafe code will only be executed if the assembly has the &#8217;skip verification&#8217; permission, which generally means code that is installed on the local machine.</span></li>
<li><span style="font-size: small;">.NET Framework uses appdomains as a mechanism for isolating code running in a process. Appdomains can be created and code loaded into or unloaded from them independent of other appdomains. This helps increase the fault tolerance of the application, as faults or crashes in one appdomain do not affect rest of the application. Appdomains can also be configured independently with different security privileges. This can help increase the security of the application by isolating potentially unsafe code. The developer, however, has to split the application into subdomains; it is not done by the CLR.</span></li>
</ol>
</li>
<li><span style="font-size: small;">C# (10 minutes)</span>
<ol>
<li><strong><span style="font-size: small;">C#</span></strong><span style="font-size: small;"> (pronounced C Sharp) is a multi-paradigm programming language that encompasses functional, imperative, generic, object-oriented (class-based), and component-oriented programming disciplines. It was developed by Microsoft as part of the .NET initiative and later approved as a standard by ECMA (</span><strong><span style="font-size: small;">ECMA-334</span></strong><span style="font-size: small;">) and ISO (</span><strong><span style="font-size: small;">ISO/IEC 23270</span></strong><span style="font-size: small;">). C# is one of the programming languages supported by the .NET Framework&#8217;s Common Language Runtime.</span></li>
<li><span style="font-size: small;">C# is intended to be a simple, modern, general-purpose, object-oriented programming language. Its development team is led by Anders Hejlsberg, the designer of Borland&#8217;s Object Pascal language. It has an object-oriented syntax based on C++ and is heavily influenced by Java. It was initially named Cool, which stood for &#8220;C like Object Oriented Language.&#8221; However, in July 2000, when Microsoft made the project public, the name of the programming language was given as C#. The most recent version of the language is 3.0 which was released in conjunction with the .NET Framework 3.5 in 2007. The next proposed version, 4.0, is in development.</span></li>
<li><span style="font-size: small;">In 1996, Sun Microsystems released the Java programming language with Microsoft soon purchasing a license to implement it in their operating system. Java was originally meant to be a platform independent language, but Microsoft, in their implementation, broke their license agreement </span><span style="font-size: small;">and made a few changes that would essentially inhibit Java&#8217;s platform-independent capabilities. Sun filed a lawsuit and Microsoft settled, deciding to create their own version of a partially compiled, partially interpreted object-oriented programming language with syntax closely related to that of C++.</span><span style="font-size: small;">During the development of .NET Framework, the class libraries were originally written in a language/compiler called Simple Managed C (SMC).</span><span style="font-size: small;"> In January 1999, Anders Hejlsberg formed a team to build a new language at the time called Cool, which stood for &#8220;C like Object Oriented Language&#8221;.</span><span style="font-size: small;"> Microsoft had considered keeping the name &#8220;Cool&#8221; as the final name of the language, but chose not to do so for trademark reasons. By the time the .NET project was publicly announced at the July 2000 Professional Developers Conference, the language had been renamed C#, and the class libraries and ASP.NET runtime had been ported to C#.</span>
<p><span style="font-size: small;">C#&#8217;s principal designer and lead architect at Microsoft is Anders Hejlsberg, who was previously involved with the design of Turbo Pascal, Borland Delphi, and Visual J++. In interviews and technical papers he has stated that flaws in most major programming languages (e.g. C++, Java, Delphi, and Smalltalk) drove the fundamentals of the Common Language Runtime (CLR), which, in turn, drove the design of the C# programming language itself. Some argue that C# shares roots in other languages.</span></li>
<li><span style="font-size: small;">By design, C# is the programming language that most directly reflects the underlying Common Language Infrastructure (CLI). Most of its intrinsic types correspond to value-types implemented by the CLI framework. However, the language specification does not state the code generation requirements of the compiler: that is, it does not state that a C# compiler must target a Common Language Runtime, or generate Common Intermediate Language (CIL), or generate any other specific format. Theoretically, a C# compiler could generate machine code like traditional compilers of C++ or FORTRAN. However, in practice, all existing compiler implementations target CIL.</span><span style="font-size: small;">Some notable C# distinguishing features are:</span></li>
<li><span style="font-size: small;">There are no global variables or functions. All methods and members must be declared within classes. It is possible, however, to use static methods/variables within public classes instead of global variables/functions.</span></li>
<li><span style="font-size: small;">Local variables cannot shadow variables of the enclosing block, unlike C and C++. Variable shadowing is often considered confusing by C++ texts.</span></li>
<li><span style="font-size: small;">C# supports a strict Boolean datatype, bool. Statements that take conditions, such as while and if, require an expression of a boolean type. While C++ also has a boolean type, it can be freely converted to and from integers, and expressions such as if(a) require only that a is convertible to bool, allowing a to be an int, or a pointer. C# disallows this &#8220;integer meaning true or false&#8221; approach on the grounds that forcing programmers to use expressions that return exactly bool can prevent certain types of programming mistakes such as if (a = b) (use of = instead of ==).</span></li>
<li><span style="font-size: small;">In C#, memory address pointers can only be used within blocks specifically marked as </span><em><span style="font-size: small;">unsafe</span></em><span style="font-size: small;">, and programs with unsafe code need appropriate permissions to run. Most object access is done through safe object references, which are always either pointing to a valid, existing object, or have the well-defined null value; a reference to a garbage-collected object, or to random block of memory, is impossible to obtain. An unsafe pointer can point to an instance of a value-type, array, string, or a block of memory allocated on a stack. Code that is not marked as unsafe can still store and manipulate pointers through the System.IntPtr type, but cannot dereference them.</span></li>
<li><span style="font-size: small;">Managed memory cannot be explicitly freed, but is automatically garbage collected. Garbage collection addresses memory leaks. C# also provides direct support for deterministic finalization with the using statement (supporting the Resource Acquisition Is Initialization idiom).</span></li>
<li><span style="font-size: small;">Multiple inheritance is not supported, although a class can implement any number of interfaces. This was a design decision by the language&#8217;s lead architect to avoid complication, avoid dependency hell and simplify architectural requirements throughout CLI.</span></li>
<li><span style="font-size: small;">C# is more typesafe than C++. The only implicit conversions by default are those which are considered safe, such as widening of integers and conversion from a derived type to a base type. This is enforced at compile-time, during JIT, and, in some cases, at runtime. There are no implicit conversions between booleans and integers, nor between enumeration members and integers (except for literal 0, which can be implicitly converted to any enumerated type). Any user-defined conversion must be explicitly marked as explicit or implicit, unlike C++ copy constructors (which are implicit by default) and conversion operators (which are always implicit).</span></li>
<li><span style="font-size: small;">Enumeration members are placed in their own scope.</span></li>
<li><span style="font-size: small;">C# provides syntactic sugar for a common pattern of a pair of methods, accessor (getter) and mutator (setter) encapsulating operations on a single attribute of a class, in the form of properties.</span></li>
<li><span style="font-size: small;">Full type reflection and discovery is available.</span></li>
</ol>
</li>
<li><span style="font-size: small;">Visual Basic (10 minutes)</span>
<ol>
<li><span style="font-size: small;">Like the BASIC programming language, Visual Basic was designed to be easily learned and used by beginner programmers. The language not only allows programmers to create simple GUI applications, but can also develop complex applications. Programming in VB is a combination of visually arranging components or controls on a form, specifying attributes and actions of those components, and writing additional lines of </span><span style="font-size: small;">code</span><span style="font-size: small;"> for more functionality. Since default attributes and actions are defined for the components, a simple program can be created without the programmer having to write many lines of code. Performance problems were experienced by earlier versions, but with faster computers and native code compilation this has become less of an issue.</span><span style="font-size: small;">Although programs can be compiled into native code executables from version 5 onwards, they still require the presence of runtime libraries of approximately 1 MB in size. This runtime is included by default in Windows 2000 and later, but for earlier versions of Windows like 95/98/NT it must be distributed together with the executable.</span>
<p><span style="font-size: small;">Forms are created using drag-and-drop techniques. A tool is used to place controls (e.g., text boxes, buttons, etc.) on the form (window). Controls have attributes and event handlers associated with them. Default values are provided when the control is created, but may be changed by the programmer. Many attribute values can be modified during run time based on user actions or changes in the environment, providing a dynamic application. For example, code can be inserted into the form resize event handler to reposition a control so that it remains centered on the form, expands to fill up the form, etc. By inserting code into the event handler for a keypress in a text box, the program can automatically translate the case of the text being entered, or even prevent certain characters from being inserted.</span></p>
<p><span style="font-size: small;">Visual Basic can create executables (EXE files), ActiveX controls, or DLL files, but is primarily used to develop Windows applications and to interface database systems. Dialog boxes with less functionality can be used to provide pop-up capabilities. Controls provide the basic functionality of the application, while programmers can insert additional logic within the appropriate event handlers. For example, a drop-down combination box will automatically display its list and allow the user to select any element. An event handler is called when an item is selected, which can then execute additional code created by the programmer to perform some action based on which element was selected, such as populating a related list.</span></p>
<p><span style="font-size: small;">Alternatively, a Visual Basic component can have no user interface, and instead provide ActiveX objects to other programs via Component Object Model (COM). This allows for server-side processing or an add-in module.</span></p>
<p><span style="font-size: small;">The language is garbage collected using reference counting, has a large library of utility objects, and has basic object oriented support. Since the more common components are included in the default project template, the programmer seldom needs to specify additional libraries. Unlike many other programming languages, Visual Basic is generally not case sensitive, although it will transform keywords into a standard case configuration and force the case of variable names to conform to the case of the entry within the symbol table. String comparisons are case sensitive by default, but can be made case insensitive if so desired.</span></p>
<p><span style="font-size: small;">The Visual Basic compiler is shared with other Visual Studio languages (C, C++), but restrictions in the IDE do not allow the creation of some targets (Windows model DLLs) and threading models.</span></li>
<li><span style="font-size: small;">Visual Basic has the following traits which differ from C-derived languages:</span>
<ul>
<li><span style="font-size: small;">Multiple assignment available in C language is not possible. A = B = C does not imply that the values of A, B and C are equal. The boolean result of &#8220;Is B = C?&#8221; is stored in A. The result stored in A could therefore be false(0) or true(-1)</span></li>
<li><span style="font-size: small;">Boolean constant True has numeric value −1.</span><sup><span style="font-size: small;">[3]</span></sup><span style="font-size: small;"> This is because the Boolean data type is stored as a 16-bit signed integer. In this construct −1 evaluates to 16 binary 1s (the Boolean value True), and 0 as 16 0s (the Boolean value False). This is apparent when performing a Not operation on a 16 bit signed integer value 0 which will return the integer value −1, in other words True = Not False. This inherent functionality becomes especially useful when performing logical operations on the individual bits of an integer such as And, Or, Xor and Not.</span><sup><span style="font-size: small;">[4]</span></sup><span style="font-size: small;"> This definition of True is also consistent with BASIC since the early 1970s Microsoft BASIC implementation and is also related to the characteristics of CPU instructions at the time.</span></li>
<li><span style="font-size: small;">Logical and bitwise operators are unified. This is unlike some C-derived languages (such as Perl), which have separate logical and bitwise operators. This again is a traditional feature of BASIC.</span></li>
<li><span style="font-size: small;">Variable array base. Arrays are declared by specifying the upper and lower bounds in a way similar to Pascal and Fortran. It is also possible to use the Option Base statement to set the default lower bound. Use of the Option Base statement can lead to confusion when reading Visual Basic code and is best avoided by always explicitly specifying the lower bound of the array. This lower bound is not limited to 0 or 1, because it can also be set by declaration. In this way, both the lower and upper bounds are programmable. In more subscript-limited languages, the lower bound of the array is not variable. This uncommon trait does exist in Visual Basic .NET but not in VBScript.</span></li>
</ul>
<ul>
<li><span style="font-size: small;">Relatively strong integration with the Windows operating system and the Component Object Model. The native types for strings and arrays are the dedicated COM types, BSTR and SAFEARRAY.</span></li>
<li><span style="font-size: small;">Banker&#8217;s rounding as the default behavior when converting real numbers to integers with the Round function.</span><span style="font-size: small;"> ? Round(2.5, 0) gives 2, ? Round(3.5, 0) gives 4.</span></li>
<li><span style="font-size: small;">Integers are automatically promoted to reals in expressions involving the normal division operator (/) so that division of an odd integer by an even integer produces the intuitively correct result. There is a specific integer divide operator (\) which does truncate.</span></li>
<li><span style="font-size: small;">By default, if a variable has not been declared or if no type declaration character is specified, the variable is of type Variant. However this can be changed with Deftype statements such as DefInt,DefBool, DefVar, DefObj, DefStr. There are 12 Deftype statements in total offered by Visual Basic 6.0. The default type may be overridden for a specific declaration by using a special suffix character on the variable name (# for Double, ! for Single, &amp; for Long, % for Integer, $ for String, and @ for Currency) or using the key phrase As (type). VB can also be set in a mode that only explicitly declared variables can be used with the command Option Explicit.</span></li>
</ul>
</li>
<p><span style="font-size: small;">OPTION BASE was introduced by ANSI, with the standard for ANSI Minimal BASIC in the late 1970s.</span></ol>
</li>
<li><span style="font-size: small;">Projects Referenced (5 minutes)<br />
</span></p>
<ol>
<li><span style="font-size: small;">Mono. </span><span style="color: #19194b;"><span style="font-size: small;">An open source, cross-platform, implementation of C# and the CLR that is binary compatible with Microsoft.NET</span></span></li>
<li><span style="font-size: small;">HtmlAgilityPack. </span><span style="color: #30332d;"><span style="font-size: small;">This is an agile HTML parser that builds a read/write DOM and supports plain XPATH or XSLT (you actually don&#8217;t HAVE to understand XPATH nor XSLT to use it, don&#8217;t worry&#8230;). It is a .NET code library that allows you to parse &#8220;out of the web&#8221; HTML files. The parser is very tolerant with &#8220;real world&#8221; malformed HTML. The object model is very similar to what proposes System.Xml, but for HTML documents (or streams).<br />
</span></span></li>
<li><span style="font-size: small;">ZedGraph.  ZedGraph is a set of classes, written in C#, for creating 2D line and bar graphs of arbitrary datasets. The classes provide a high degree of flexibility &#8212; almost every aspect of the graph can be user-modified. At the same time, usage of the classes is kept simple by providing default values for all of the graph attributes. The classes include code for choosing appropriate scale ranges and step sizes based on the range of data values being plotted.<br />
</span></li>
</ol>
</li>
<li><span style="font-size: small;">Being a Developer (15 minutes)</span>
<ol>
<li><span style="font-size: small;">Dealing with your Community (Clients and Team mates)</span></li>
<li><span style="font-size: small;">Understanding the Question/Problem/System</span></li>
<li><span style="font-size: small;">Finding the Solution/Making the Plan</span></li>
<li><span style="font-size: small;">Knowing the Language</span></li>
</ol>
</li>
</ol>
<p><strong><span style="font-size: small;">Console example   Basic Syntax and Concepts</span></strong></p>
<ol>
<li><span style="font-size: small;">References (Project References and </span><strong><span style="font-size: small;">using</span></strong><span style="font-size: small;"> syntax). (5 minutes)</span>
<ol>
<li><span style="font-size: small;">Name spaces</span></li>
<li><span style="font-size: small;">Standard References in Visual Studio 2008</span>
<ol>
<li><span style="font-size: small;">System</span></li>
<li><span style="font-size: small;">System.Core</span></li>
<li><span style="font-size: small;">System.Data</span></li>
<li><span style="font-size: small;">System.Data.DataSetExtensions</span></li>
<li><span style="font-size: small;">System.Deployment</span></li>
<li><span style="font-size: small;">System.Xml</span></li>
<li><span style="font-size: small;">System.Xml.Linq</span></li>
</ol>
</li>
</ol>
</li>
<li><span style="font-size: small;">Hello World Console Application (5 minutes)  (<a id="rh4o" title="http://pastebin.com/wV7AjDUy" href="http://pastebin.com/wV7AjDUy">http://pastebin.com/wV7AjDUy</a>)</span>
<ol>
<li><span style="font-size: small;">Declaring a variable of type string</span></li>
<li><span style="font-size: small;">WriteLine</span></li>
<li><span style="font-size: small;">ReadLine</span></li>
</ol>
</li>
<li><span style="font-size: small;">Method definition (10 minutes) (<a id="gm4j" title="http://pastebin.com/7ycj4Ty7" href="http://pastebin.com/7ycj4Ty7">http://pastebin.com/7ycj4Ty7</a>)</span>
<ol>
<li><span style="font-size: small;">Command line parameters</span></li>
<li><span style="font-size: small;">Comments</span></li>
<li><span style="font-size: small;">If Then Else conditional logic</span></li>
<li><span style="font-size: small;">While loops</span></li>
<li><span style="font-size: small;">String concatenation</span></li>
<li><span style="font-size: small;">Integer addition</span></li>
</ol>
</li>
<li><span style="font-size: small;">Grabbing a Web Page (15 minutes) (<a id="ft0g" title="http://pastebin.com/WRerZTN0" href="http://pastebin.com/WRerZTN0">http://pastebin.com/WRerZTN0</a>)</span>
<ol>
<li><span style="font-size: small;">Utilizing a url from the command line</span></li>
<li><span style="font-size: small;">WebRequest</span></li>
<li><span style="font-size: small;">Object Properties:  Timeout and UserAgent</span></li>
<li><span style="font-size: small;">Stream</span></li>
<li><span style="font-size: small;">StreamReader</span></li>
<li><span style="font-size: small;">ReadToEnd</span></li>
<li><span style="font-size: small;">WebException</span></li>
<li><span style="font-size: small;">Exception</span></li>
</ol>
</li>
<li><span style="font-size: small;">Grabbing images (5 minutes)  (<a id="uue-" title="http://pastebin.com/RVsKMiB0" href="http://pastebin.com/RVsKMiB0">http://pastebin.com/RVsKMiB0</a>)<br />
</span></p>
<ol>
<li><span style="font-size: small;">WebClient client = new WebClient();<br />
</span></li>
<li><span style="font-size: small;">client.DownloadFile</span></li>
</ol>
</li>
</ol>
<p><strong>Asynchronous Web Retrieval and basic XML <span style="font-weight: normal;"> </span></strong></p>
<ol>
<li><span style="font-size: small;">Asynchronous data fetching (<a href="http://pastebin.com/eaeNB2Aj">http://pastebin.com/eaeNB2Aj</a>)</span></li>
<li><span style="font-size: small;">Extracting the data from the XML</span>
<ol>
<li><span style="font-size: small;">XML (<a href="http://pastebin.com/datGpNJd">http://pastebin.com/datGpNJd</a>)</span>
<ol>
<li><span style="font-size: small;">Organize your data (PSPad)</span></li>
<li><span style="font-size: small;">Get to know your data</span></li>
</ol>
</li>
<li><span style="font-size: small;">XPath</span>
<ol>
<li><span style="font-size: small;">Extracting a single piece of information (<a href="http://pastebin.com/PgHjepYZ">http://pastebin.com/PgHjepYZ</a>)</span></li>
<li><span style="font-size: small;">Extracting many pieces of information (<a href="http://pastebin.com/tN8q9jX6">http://pastebin.com/tN8q9jX6</a>)</span></li>
</ol>
</li>
<li><span style="font-size: small;">HtmlAgilityPack ()</span>
<ol>
<li><span style="font-size: small;">Grabbing Data from a web page ()</span></li>
</ol>
</li>
<li><span style="font-size: small;">Regular Expressions ()</span></li>
</ol>
</li>
</ol>
<p><strong><span style="font-size: small;">.NET and Databases</span></strong></p>
<ol>
<li><span style="font-size: small;">MySQL + MSSQL (5 minutes)</span>
<ol>
<li><span style="font-size: small;">Microsoft SQL Server Management Studio (<a title="download" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=08e52ac2-1d62-45f6-9a4a-4b76a8564a2b&amp;displaylang=en">download</a>)</span></li>
<li><span style="font-size: small;">Creating a table</span></li>
<li><span style="font-size: small;">Creating Columns</span></li>
</ol>
</li>
<li><span style="font-size: small;">SQL itself (5 minutes)</span>
<ol>
<li><span style="font-size: small;">Building SQL string</span></li>
<li><span style="font-size: small;">Stored Procedures</span></li>
</ol>
</li>
<li><span style="font-size: small;">Accessing a database (5 minutes) <a href="http://pastebin.com/rAMpbcdw">http://pastebin.com/rAMpbcdw</a></span>
<ol>
<li><span style="font-size: small;">Imports System.Data.SqlClient</span></li>
<li><span style="font-size: small;">ConnectionString <span style="font-family: monospace;"><span style="color: #181818;"><span style="font-size: x-small;"> ConnString <span style="color: #008000;">=</span> <span style="color: #808080;">&#8220;Data Source=MATHEW-PC\SQLEXPRESS;Initial Catalog=Test;Integrated Security=True&#8221;</span></span></span></span></span></li>
<li><span style="font-size: small;"><span style="font-family: arial;"><span style="color: #000000;">Dim SQLConn As New SqlConnection() &#8216;The SQL Connection</span></span></span></li>
<li><span style="font-size: small;"><span style="font-family: arial;"><span style="color: #000000;">Dim SQLCmd As New SqlCommand() &#8216;The SQL Command</span></span></span></li>
<li><span style="font-size: small;"><span style="font-family: arial;"><span style="color: #000000;">SQLConn.ConnectionString = ConnString &#8216;Set the Connection String</span></span></span></li>
<li>SQLConn.Open() &#8216;Open the connection</li>
<li>SQLCmd.Connection = SQLConn &#8216;Sets the Connection to use with the SQL Command</li>
<li>SQLCmd.CommandText = SQLStr &#8216;Sets the SQL String</li>
<li>SQLCmd.ExecuteNonQuery() &#8216;Executes SQL Commands Non-Querys only</li>
<li>SQLConn.Close() &#8216;Close the connection</li>
</ol>
</li>
<li><span style="font-size: small;">Sending data (5 minutes)</span>
<ol>
<li><span style="font-size: small;">INSERT</span></li>
<li><span style="font-size: small;">UPDATE <a href="http://pastebin.com/BYvLauWQ">http://pastebin.com/BYvLauWQ</a><br />
</span></li>
</ol>
</li>
<li><span style="font-size: small;">Retrieving Data  <a href="http://pastebin.com/XaPaKHe5">http://pastebin.com/XaPaKHe5</a></span>
<ol>
<li><span style="font-size: small;">SELECT</span></li>
<li><span style="font-size: small;">DataReader</span></li>
</ol>
</li>
<li><span style="font-size: small;">Data structures  <a title="http://pastebin.com/U72N5V56" href="http://pastebin.com/U72N5V56">http://pastebin.com/U72N5V56</a></span>
<ol>
<li><span style="font-size: small;">DataSet</span></li>
<li><span style="font-size: small;">DataTable</span></li>
<li><span style="font-size: small;">Pros and cons<br />
</span></li>
</ol>
</li>
<li><span style="font-size: small;">Stored Procedures</span>
<ol>
<li>INSERT
<ol>
<li>Stored Procedure Source (<a href="http://pastebin.com/SMmZgvL4">http://pastebin.com/SMmZgvL4</a>)</li>
<li>Visual Basic Code (<a href="http://pastebin.com/EkWsyt9V">http://pastebin.com/EkWsyt9V</a>)</li>
</ol>
</li>
<li>UPDATE
<ol>
<li>Stored Procedure Source (<a href="http://pastebin.com/MKA74u8M">http://pastebin.com/MKA74u8M</a>)</li>
<li>Visual Basic Code (<a href="http://pastebin.com/fWTqmMWA">http://pastebin.com/fWTqmMWA</a>)</li>
</ol>
</li>
<li>DELETE
<ol>
<li>Stored Procedure Source (<a href="http://pastebin.com/qf4nyDAU">http://pastebin.com/qf4nyDAU</a>)</li>
<li>Visual Basic Code (<a href="http://pastebin.com/VeFjTCxg">http://pastebin.com/VeFjTCxg</a>)</li>
</ol>
</li>
<li>SELECT
<ol>
<li>Source (<a id="w:gz" title="http://pastebin.com/ZBbqSdnA" href="http://pastebin.com/ZBbqSdnA">http://pastebin.com/ZBbqSdnA</a>)</li>
<li>VB Code (<a href="http://pastebin.com/K6dbqEnY">http://pastebin.com/K6dbqEnY</a>)</li>
</ol>
</li>
</ol>
</li>
<li><span style="font-size: small;">Different methods of building code</span>
<ol>
<li><span style="font-size: small;">Simplification through Encapsulation</span>
<ol>
<li><span style="font-size: small;">What we want to do &#8230;</span></li>
<li><span style="font-size: small;">Database Class</span>
<ol>
<li><span style="font-size: small;">Making a basic class (<a href="http://pastebin.com/kpGaDwn3">http://pastebin.com/kpGaDwn3</a>)</span></li>
<li>Private Fields (<a href="http://pastebin.com/MqmiDbLn">http://pastebin.com/MqmiDbLn</a>)</li>
<li>Constructor (<a href="http://pastebin.com/X5YDdvx7">http://pastebin.com/X5YDdvx7</a>)</li>
<li>Properties (<a href="http://pastebin.com/qRQvWGPc">http://pastebin.com/qRQvWGPc</a>)</li>
<li>Methods ()</li>
<li>Completed Example (<a href="http://pastebin.com/Cj6TwgYV">http://pastebin.com/Cj6TwgYV</a>)</li>
</ol>
</li>
<li>Table Class
<ol>
<li>Base (Private Fields, Public Properties, Constructor stubs) (<a href="http://pastebin.com/1TkJFKbp">http://pastebin.com/1TkJFKbp</a>)</li>
<li>load method with side trip to configuration files (<a href="http://pastebin.com/UV7fJEzC"></a><a title="http://pastebin.com/P6ZNAnzy" href="http://pastebin.com/P6ZNAnzy">http://pastebin.com/P6ZNAnzy</a>)</li>
</ol>
</li>
<li>Examples Applying Class
<ol>
<li>LOAD
<ol>
<li>Source SQL (<a href="http://pastebin.com/e5s2HiiH">http://pastebin.com/e5s2HiiH</a>)</li>
<li>Console example (<a href="http://pastebin.com/pTwt2usu">http://pastebin.com/pTwt2usu</a>)</li>
</ol>
</li>
<li>INSERT
<ol>
<li>Table class improvement (<a href="http://pastebin.com/RcVBGmB8">http://pastebin.com/RcVBGmB8</a>)</li>
<li>Console example (<a href="http://pastebin.com/Bb8YXPwm">http://pastebin.com/Bb8YXPwm</a>)</li>
</ol>
</li>
<li>UPDATE
<ol>
<li>Table class improvement (<a href="http://pastebin.com/ChxxxPYV">http://pastebin.com/ChxxxPYV</a>)</li>
<li>Console example (<a href="http://pastebin.com/z25EFubs">http://pastebin.com/z25EFubs</a>)</li>
</ol>
</li>
<li>DELETE
<ol>
<li>Table class improvement (<a href="http://pastebin.com/Yr9sLVUe">http://pastebin.com/Yr9sLVUe</a>)</li>
<li>Console example (<a href="http://pastebin.com/0QUKbdRW">http://pastebin.com/0QUKbdRW</a>)</li>
</ol>
</li>
<li>SELECT
<ol>
<li>Table class improvement (<a href="http://pastebin.com/nTX7CLu7">http://pastebin.com/nTX7CLu7</a>) for SqlDataReader output</li>
<li>Console example (<a href="http://pastebin.com/rqPDYq8g">http://pastebin.com/rqPDYq8g</a>)</li>
<li>Table class improvement (<a href="http://pastebin.com/qD0Q0pp1">http://pastebin.com/qD0Q0pp1</a>) for DataSet output</li>
<li>Console example (<a href="http://pastebin.com/S91NSaDq">http://pastebin.com/S91NSaDq</a>)</li>
</ol>
</li>
</ol>
</li>
</ol>
</li>
</ol>
</li>
</ol>
<p><strong><span style="font-size: small;"><span style="font-size: large;">Day 2</span></span></strong></p>
<p><strong><span style="font-size: small;">Windows Forms Introduction </span></strong></p>
<ol>
<li><span style="font-size: small;">A different project to set up.</span></li>
<li><span style="font-size: small;">Visual Studio &#8230;</span>
<ol>
<li><span style="font-size: small;">Toolbox</span></li>
<li><span style="font-size: small;">Debugger</span></li>
</ol>
</li>
<li><span style="font-size: small;">A tour through the components of a Windows Form project.</span></li>
<li><span style="font-size: small;">Building a basic Entry form</span>
<ol>
<li><span style="font-size: small;">Layout (http://screencast.com/t/OGQxMzUzYmY)</span>
<ol>
<li><span style="font-size: small;">Form</span>
<ol>
<li><span style="font-size: small;">Application Title (Text property)</span></li>
<li><span style="font-size: small;">Dimensions (Width and Height properties)</span></li>
<li><span style="font-size: small;">MinimumSize / MaximumSize</span></li>
<li><span style="font-size: small;">Background color (<a href="http://pastebin.com/n5iBKUd9">http://pastebin.com/n5iBKUd9</a>)</span></li>
<li><span style="font-size: small;">Form_Load ()</span></li>
<li><span style="font-size: small;">Resize (<a href="http://pastebin.com/bRJd8jYY">http://pastebin.com/bRJd8jYY</a>)</span>
<ol>
<li><span style="font-size: small;">Compare to ResizeBegin</span></li>
<li><span style="font-size: small;">Compare to ResizeEnd</span></li>
</ol>
</li>
<li><span style="font-size: small;">Drawing on a Form (<a href="http://pastebin.com/Zbvzr2MK">http://pastebin.com/Zbvzr2MK</a>)</span></li>
<li><span style="font-size: small;">FormClosing (<a href="http://pastebin.com/V30CivVA">http://pastebin.com/V30CivVA</a>)</span></li>
<li><span style="font-size: small;">FormClosed (Registry Writes)</span></li>
</ol>
</li>
<li><span style="font-size: small;">TextBox</span>
<ol>
<li><span style="font-size: small;">Naming (txt&lt;Name for data&gt;)</span></li>
<li><span style="font-size: small;">Tab index</span></li>
<li><span style="font-size: small;">ToolTip (<a href="http://pastebin.com/Em9J52T3">http://pastebin.com/Em9J52T3</a>)</span>
<ol>
<li><span style="font-size: small;">Naming</span></li>
</ol>
</li>
<li><span style="font-size: small;">Validating event (<a href="http://pastebin.com/gaQL45uv">http://pastebin.com/gaQL45uv</a>)</span></li>
</ol>
</li>
<li><span style="font-size: small;">Label</span>
<ol>
<li><span style="font-size: small;">Naming</span></li>
</ol>
</li>
<li><span style="font-size: small;">DateTimePicker</span></li>
<li><span style="font-size: small;">Button</span>
<ol>
<li><span style="font-size: small;">Naming (btn&lt;Name of what it does&gt;)</span></li>
<li><span style="font-size: small;">Tab index</span></li>
<li><span style="font-size: small;">Click event</span>
<ol>
<li><span style="font-size: small;">btnExit_click (<a href="http://pastebin.com/BfrDgJCk">http://pastebin.com/BfrDgJCk</a>)</span></li>
<li><span style="font-size: small;">btnSave_click (<a href="http://pastebin.com/0FaL3qz9">http://pastebin.com/0FaL3qz9</a>)</span></li>
</ol>
</li>
<li>Converting text to other types
<ol>
<li>text to integer (<a href="http://pastebin.com/fATGsikA">http://pastebin.com/fATGsikA</a>)</li>
</ol>
</li>
</ol>
</li>
</ol>
</li>
</ol>
</li>
<li><span style="font-size: small;">Saving data from a simple form</span>
<ol>
<li><span style="font-size: small;">File Dialog (<a href="http://pastebin.com/pLW2Nfjf">http://pastebin.com/pLW2Nfjf</a>)</span></li>
<li><span style="font-size: small;">Convert to a Rich Text Box (<a href="http://pastebin.com/zsw9KKTh">http://pastebin.com/zsw9KKTh</a>)</span></li>
</ol>
</li>
</ol>
<p><strong><span style="font-size: small;">Windows Forms </span></strong></p>
<ol>
<li><span style="font-size: small;">DataGridView</span>
<ol>
<li>Manual Setup
<ol>
<li>Filling (<a href="http://pastebin.com/BPzArAKQ">http://pastebin.com/BPzArAKQ</a>)</li>
<li>Add / Edit (<a href="http://pastebin.com/av8yt2rN">http://pastebin.com/av8yt2rN</a>)</li>
<li>Sorting</li>
</ol>
</li>
<li>From the Database (<a href="http://pastebin.com/eFnMtFVC">http://pastebin.com/eFnMtFVC</a>)</li>
<li>From XML (<a href="http://pastebin.com/apEvZpRP">http://pastebin.com/apEvZpRP</a>)</li>
</ol>
</li>
</ol>
<div><strong>Windows Forms with Advanced Classes</strong></div>
<ol>
<li>IClassifier (<a href="http://pastebin.com/xGZcvmG6">http://pastebin.com/xGZcvmG6</a>)</li>
<li>ICategory (<a href="http://pastebin.com/8MR66cRM">http://pastebin.com/8MR66cRM</a>)</li>
<li>PhraseCount (<a href="http://pastebin.com/tAVHeKen">http://pastebin.com/tAVHeKen</a>)</li>
<li>ExcludedWords (<a href="http://pastebin.com/KrmAj7tc">http://pastebin.com/KrmAj7tc</a>)</li>
<li>EnumerableCategory (<a href="http://pastebin.com/1cjDDtte">http://pastebin.com/1cjDDtte</a>)</li>
<li>Classifer (<a href="http://pastebin.com/xq6iwzBB">http://pastebin.com/xq6iwzBB</a>)</li>
<li>Category (<a href="http://pastebin.com/vZdpnGXA">http://pastebin.com/vZdpnGXA</a>)</li>
<li>Putting it in a form &#8230; ??</li>
</ol>
<p><strong><span style="font-size: small;">ASP.NET Background</span></strong></p>
<ol>
<li><span style="font-size: small;">xHTML<br />
</span></p>
<ol>
<li><span style="font-size: small;">DOCTYPE</span></li>
<li><span style="font-size: small;">HEAD</span>
<ol>
<li><span style="font-size: small;">Title</span></li>
<li><span style="font-size: small;">META</span>
<ol>
<li><span style="font-size: small;"><span style="font-family: 'courier new';"><span style="font-size: x-small;">&lt;meta name=&#8221;description&#8221; content=&#8221;Free Web tutorials on HTML, CSS, XML, and XHTML&#8221; /&gt;</span></span><br />
</span></li>
<li><span style="font-size: x-small;"><span style="font-family: 'courier new';"><span style="font-size: x-small;">&lt;meta name=&#8221;keywords&#8221; content=&#8221;HTML, DHTML, CSS, XML, XHTML, JavaScript&#8221; /&gt;</span></span><br />
</span></li>
</ol>
</li>
<li><span style="font-size: small;">SCRIPT</span></li>
<li><span style="font-size: small;">LINK</span></li>
</ol>
</li>
<li><span style="font-size: small;">BODY</span>
<ol>
<li>Headings (<a href="http://pastebin.com/1zv0ic10">http://pastebin.com/1zv0ic10</a>)</li>
<li>Paragraphs
<ol>
<li>Simple paragraphs (<a href="http://pastebin.com/Hhdzyztt">http://pastebin.com/Hhdzyztt</a>)</li>
<li>Line breaks (<a href="http://pastebin.com/jDSsv7Rb">http://pastebin.com/jDSsv7Rb</a>)</li>
</ol>
</li>
<li>Formatting (<a href="http://pastebin.com/UbGb9eSg">http://pastebin.com/UbGb9eSg</a>)</li>
<li>Styles (<a href="http://pastebin.com/9yT1Ms2H">http://pastebin.com/9yT1Ms2H</a>)</li>
<li>Links (<a href="http://pastebin.com/j0GgGWMQ">http://pastebin.com/j0GgGWMQ</a>)</li>
<li>Images (<a href="http://pastebin.com/fLU5N2XC">http://pastebin.com/fLU5N2XC</a>)</li>
<li>Tables (<a href="http://pastebin.com/3DT8EH04">http://pastebin.com/3DT8EH04</a>)</li>
<li>Lists (<a href="http://pastebin.com/6kVHYEgQ">http://pastebin.com/6kVHYEgQ</a>)</li>
<li>Forms
<ol>
<li>Text boxes (<a href="http://pastebin.com/sUkrd5iF">http://pastebin.com/sUkrd5iF</a>)</li>
<li>Radio buttons (<a href="http://pastebin.com/nYqkEnUQ">http://pastebin.com/nYqkEnUQ</a>)</li>
<li>Checkboxes (<a href="http://pastebin.com/ARJw7sr7">http://pastebin.com/ARJw7sr7</a>)</li>
<li>Action (<a href="http://pastebin.com/FgWN8Fac">http://pastebin.com/FgWN8Fac</a>)</li>
</ol>
</li>
<li>DIV ()</li>
</ol>
</li>
<li>CSS
<ol>
<li>Example 1 (<a href="http://pastebin.com/av2CG2rT">http://pastebin.com/av2CG2rT</a>)</li>
<li>Id selector (<a href="http://pastebin.com/ynLDQ9h5">http://pastebin.com/ynLDQ9h5</a>)</li>
<li>Class selector (<a href="http://pastebin.com/Fd3tye2D">http://pastebin.com/Fd3tye2D</a>)</li>
<li>Class selector by specific tag (<a href="http://pastebin.com/9aYQtya6">http://pastebin.com/9aYQtya6</a>)</li>
<li>Background color (<a href="http://pastebin.com/D3xPYYJT">http://pastebin.com/D3xPYYJT</a>)</li>
<li>Text color (<a href="http://pastebin.com/jfPjHAXE">http://pastebin.com/jfPjHAXE</a>)</li>
<li>Text alignment (<a href="http://pastebin.com/A5pttxZ2">http://pastebin.com/A5pttxZ2</a>)</li>
<li>Text decoration (<a href="http://pastebin.com/09k0YApw">http://pastebin.com/09k0YApw</a>)</li>
<li>Text decoration 2 (<a href="http://pastebin.com/HUVMYENH">http://pastebin.com/HUVMYENH</a>)</li>
<li>Text transformation (<a href="http://pastebin.com/aTAmsvim">http://pastebin.com/aTAmsvim</a>)</li>
</ol>
</li>
</ol>
</li>
<li>JavaScript
<ol>
<li>Including JavaScript in a page
<ol>
<li>On the page (<a id="d45l" title="http://pastebin.com/KkvxtdQa" href="http://pastebin.com/KkvxtdQa">http://pastebin.com/KkvxtdQa</a>)</li>
<li>In a separate file
<ol>
<li>HTML (<a href="http://pastebin.com/XwcQyLQP">http://pastebin.com/XwcQyLQP</a>)</li>
<li>Script file (<a href="http://pastebin.com/j632542g">http://pastebin.com/j632542g</a>)</li>
</ol>
</li>
</ol>
</li>
<li>Variables
<ol>
<li>Single variables</li>
<li>Collections</li>
</ol>
</li>
<li>Processing Data</li>
<li>DOM &amp; JavaScript
<ol>
<li>Accessing</li>
<li>Extending</li>
</ol>
</li>
</ol>
</li>
<li><span style="font-size: small;">Network Introduction</span>
<ol>
<li><span style="font-size: small;">TCP/IP</span>
<ol>
<li><span style="font-family: sans-serif;"><span style="font-size: x-small;">The <strong>TCP/IP model</strong> is a description framework for computer network protocols created in the 1970s by DARPA, an agency of the United States Department of Defense. It evolved from ARPANET, which was the world&#8217;s first wide area network and a predecessor of the Internet. The TCP/IP Model is sometimes called the <em>Internet Model</em> or the <em>DoD Model</em>.</span></span><span style="font-family: sans-serif;"><span style="font-size: x-small;">The TCP/IP model, or Internet Protocol Suite, describes a set of general design guidelines and implementations of specific networking protocols to enable computers to communicate over a network. TCP/IP provides end-to-end connectivity specifying how data should be formatted, addressed, transmitted, routed and received at the destination. Protocols exist for a variety of different types of communication services between computers.</span></span></li>
</ol>
</li>
<li><span style="font-size: small;">HTTP/HTTPS. </span>
<ol>
<li><span style="font-size: small;"><span style="font-family: sans-serif;"><span style="font-size: x-small;">HTTP is a request-response standard typical of client-server computing. In HTTP, web browsers or spiders typically act as clients, while an application running on the computer hosting the web site acts as a server. The client, which submits HTTP requests, is also referred to as the <em>user agent</em>. The responding server, which stores or creates <em>resources</em> such as HTML files and images, may be called the <em>origin server</em>. In between the user agent and origin server may be several intermediaries, such as proxies, gateways, and tunnels.</span></span><br />
</span></li>
</ol>
</li>
</ol>
</li>
<li><span style="font-size: small;">Internet Information Service<br />
</span></p>
<ol>
<li><span style="font-family: sans-serif;"><span style="font-size: x-small;"><strong>Internet Information Services</strong> (<strong>IIS</strong>) &#8211; formerly called <strong>Internet Information Server</strong> &#8211; is a web server application and set of feature extension modules created by Microsoft for use with Microsoft Windows. It is the world&#8217;s second most popular web server in terms of overall websites behind the industry leader Apache HTTP Server. As of March 2010, it served 24.47% of all websites according to Netcraft. The protocols supported in IIS 7 include: FTP, FTPS, SMTP, NNTP, and HTTP/HTTPS
<p></span></span></li>
</ol>
</li>
</ol>
<div><span style="font-family: sans-serif;"><span style="font-size: x-small;"><strong><span style="font-size: large;">Day 3</span></strong><br />
</span></span></div>
<p><strong>ASP.NET Part 1 Basic ASP.NET Page </strong></p>
<ol>
<li>A Default Web Site</li>
<li>The &#8220;Post Back&#8221; Event :: Watch this using the debugger to see how it fits into the flow of processing</li>
<li>Text box control with Click Event
<ol>
<li>ASPX (<a href="http://pastebin.com/kUFvgu5v">http://pastebin.com/kUFvgu5v</a>)</li>
<li>Code Behind (<a href="http://pastebin.com/N2mA9UJb">http://pastebin.com/N2mA9UJb</a>)</li>
</ol>
</li>
<li>GridView Basic (<a href="http://pastebin.com/mWMr4LzZ">http://pastebin.com/mWMr4LzZ</a>)
<ol>
<li>With Sorting (<a href="http://pastebin.com/in6JANPF">http://pastebin.com/in6JANPF</a>)</li>
<li>With Edit (<a href="http://pastebin.com/u4TA7T86">http://pastebin.com/u4TA7T86</a>)</li>
<li>Add new
<ol>
<li>ASPX (<a href="http://pastebin.com/62esrsAA">http://pastebin.com/62esrsAA</a>)</li>
<li>Code behind (<a href="http://pastebin.com/KaVCavJ4">http://pastebin.com/KaVCavJ4</a>)</li>
</ol>
</li>
<li>With Paging (<a href="http://pastebin.com/YWX0wGaz">http://pastebin.com/YWX0wGaz</a>)</li>
</ol>
</li>
<li>FileUpload
<ol>
<li>ASPX (<a href="http://pastebin.com/mgDyHY92">http://pastebin.com/mgDyHY92</a>)</li>
<li>Code Behind (<a href="http://pastebin.com/zUq5VTp0">http://pastebin.com/zUq5VTp0</a>)</li>
</ol>
</li>
</ol>
<p><strong><span style="font-size: small;">ASP.NET Part 2</span></strong></p>
<ol>
<li><span style="font-size: small;">Bulleted List (<a href="http://pastebin.com/4YqYHfXd">http://pastebin.com/4YqYHfXd</a>)</span></li>
<li><span style="font-size: small;">CheckBoxList </span>
<ol>
<li><span style="font-size: small;">ASPX (<a href="http://pastebin.com/s3zUeJQf">http://pastebin.com/s3zUeJQf</a>)</span></li>
<li><span style="font-size: small;">Code Behind (<a href="http://pastebin.com/U2ix8Cd7">http://pastebin.com/U2ix8Cd7</a>)</span></li>
</ol>
</li>
<li>DropDownList
<ol>
<li>ASPX (<a href="http://pastebin.com/ZnAebpQ6">http://pastebin.com/ZnAebpQ6</a>)</li>
<li>Code Behind (<a href="http://pastebin.com/6aS4ewVB">http://pastebin.com/6aS4ewVB</a>)</li>
</ol>
</li>
<li>Calendar
<ol>
<li>ASPX (<a href="http://pastebin.com/JjEYcT1U">http://pastebin.com/JjEYcT1U</a>)</li>
<li>Code Behind (<a href="http://pastebin.com/tz2q9inD">http://pastebin.com/tz2q9inD</a>)</li>
</ol>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.anomalistdesign.com/blog/?feed=rss2&amp;p=48</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://www.anomalistdesign.com/blog/?p=31</link>
		<comments>http://www.anomalistdesign.com/blog/?p=31#comments</comments>
		<pubDate>Sun, 25 Apr 2010 05:08:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.anomalistdesign.com/blog/?p=31</guid>
		<description><![CDATA[Anomalist has the skills to deal with projects and the people involved in them.]]></description>
			<content:encoded><![CDATA[<p>A good friend (who is also a business associate) and I were having a discussion about what has made Anomalist successful: Communication.</p>
<p>Over the last decade a great deal of my time has been spent developing relationships with my contractors and honing my skills as a communicator.</p>
<p>This isn&#8217;t simple a matter of getting a good vocabulary, writing volumes, and giving hundreds of speeches.  It is also a matter of learning to listen and differentiating assumptions from real understanding.</p>
<p>Our group works in a multi-cultural community in at least three dimensions:</p>
<ul>
<li>Country of origin.  Clients and crew span three continents, two major human traditions (Eastern and Western influenced), and six minor human tradition zones (South East Asia, Australia, Canada, United States, United Kingdom, and Continental Europe).</li>
<li>Types of work.  We&#8217;ve worked with people focused purely with traditional businesses (individual, small, medium, and large), large corporations, government agencies, and specifically the scientific publishing industry.  The contact people have been a mixture of self-trained to highly educated (multiple PhDs).</li>
<li>Personalities.  We have dealt with fire-brands, hyperactive, and the totally rational.</li>
</ul>
<p>These experiences have allowed us to generate not only the technical skills necessary to successfully implement projects but also the inter-personal skills.</p>
<p>In fact, the technical part is usually only 1% of the actual difficulty.  The inter-personal part is 99%.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anomalistdesign.com/blog/?feed=rss2&amp;p=31</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing Anomalist Blog</title>
		<link>http://www.anomalistdesign.com/blog/?p=25</link>
		<comments>http://www.anomalistdesign.com/blog/?p=25#comments</comments>
		<pubDate>Thu, 22 Apr 2010 02:04:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Announcments]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.anomalistdesign.com/blog/?p=25</guid>
		<description><![CDATA[We&#8217;ve discussed and planned for a company blog for a couple years but work and life always got in the way.
I&#8217;ll be echoing here the posts I am making on our fan page at FaceBook.
Thanks to Dale for skinning Wordpress to match our site layout!
]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve discussed and planned for a company blog for a couple years but work and life always got in the way.</p>
<p>I&#8217;ll be echoing here the posts I am making on our <a href="http://facebook.anomalistdesign.com" target="_blank">fan page</a> at FaceBook.</p>
<p>Thanks to Dale for skinning Wordpress to match our site layout!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anomalistdesign.com/blog/?feed=rss2&amp;p=25</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

