Program Development Cycle
Performing a Task on the Computer
Step 1:
What is the ouput? Exactly what will the task produce?
Step 2:
Identify the data. What input is necessary to produce the output?
Step 3:
Determine how to process the input to obtain the desired output. What formulas or ways of doing things can be used to obtain the output?
Program Development Cycle & Software Development Life Cycle
The programming development cycle is a process of steps, used by programmers to more efficiently manage their time ...
Read more →
Resume – VB.net Proficiency
The purpose of this post is to share my proficiency with vb.net, so that a potential employer may have a better understanding of my level of experience.
View my VB.net proficiency test here: http://www.mikestratton.net/assets/visual_basic_net_proficiency1.pdf
Test provided by: http://www.ikmnet.com/
I recently applied for a job where the initial stages of the interview process included a remote test that validates my knowledge within the VB.net platform. The position that I applied for was an entry level opportunity, and I expected ...
Read more →
Asp.net – Managing State
Managing State of an ASP.NET Application
We will focus on the following topics:
Store and Retrieve Application State
Store and Retrieve Session State
Configure Session State Storage
Client Side Cookies for State Storage
Store and Retrieve Application State
Advanced applications use pieces of data or variables that need to be maintained
over multiple requests or multiple users. This data is known as "STATE".
Application State is any data that is shared among multiple users of an application.
Application State Storage is supplied by .NET Framework ...
Read more →