Development ASP.Net

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="ProfileInfo_aspx" %>



    Profile Information


    
    

        
            First Name: 
            Last Name:  
            Phone number: 
            BirthDate 
        
        
            C#
            ASP.NET
            .NET Apps
            Java
            UML
            Object Oriented Design
            Design Patterns
        
         
    

    


File: Default.aspx.cs
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class ProfileInfo_aspx : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
    if (!IsPostBack ) 
    {
      if (Profile.IsAnonymous == true)
      {
        this.pnlNonAnonymousInfo.Visible = false;
      }
      else
      {
        this.lastName.Text = Profile.lastName;
        this.firstName.Text = Profile.firstName;
        this.phone.Text = Profile.phoneNumber;
        this.birthDate.Text = Profile.birthDate.ToShortDateString();
      }        
      if (Profile.MyFlag != null)
      {
        foreach (ListItem li in this.cblMyFlag.Items)
        {
          foreach (string profileString in Profile.MyFlag)
          {
            if (li.Text == profileString)
            {
              li.Selected = true;
            }  
          }    
        }      
      }        
    }
    }            
  protected void save_Click(object sender, EventArgs e)
  {
    if (Profile.IsAnonymous == false)
    {
      Profile.lastName = this.lastName.Text;
      Profile.firstName = this.firstName.Text;
      Profile.phoneNumber = this.phone.Text;
      DateTime birthDate = Convert.ToDateTime(this.birthDate.Text);
      Profile.birthDate = birthDate;
    }
    Profile.MyFlag = new System.Collections.Specialized.StringCollection();
    foreach (ListItem li in this.cblMyFlag.Items)
    {
      if (li.Selected)
      {
        Profile.MyFlag.Add(li.Value.ToString());
      }
    }
    
    Response.Redirect("Welcome.aspx");
  }
}
File: Web.Config


  
    
    
  

  
    
    
    
    
    
    
      
        
        
        
        
                 type="System.Collections.Specialized.StringCollection"  />