Click here to Skip to main content
15,895,011 members
Articles / Web Development / HTML

Build a Google IG like AJAX Start Page in 7 days using ASP.NET AJAX and .NET 3.0

Rate me:
Please Sign up or sign in to vote.
4.80/5 (325 votes)
10 Mar 2010CPOL38 min read 1.8M   7.8K   1.1K  
Build a Start Page similar to Google IG in 7 nights using ASP.NET AJAX, .NET 3.0, LINQ, DLinq, and XLinq.
using System;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Collections;
using System.Drawing;
using System.Workflow.ComponentModel.Compiler;
using System.Workflow.ComponentModel.Serialization;
using System.Workflow.ComponentModel;
using System.Workflow.ComponentModel.Design;
using System.Workflow.Runtime;
using System.Workflow.Activities;
using System.Workflow.Activities.Rules;

namespace DashboardBusiness
{
	public sealed partial class MoveWidgetInstanceWorkflow: SequentialWorkflowActivity
	{
		public MoveWidgetInstanceWorkflow()
		{
			InitializeComponent();
		}

        public static DependencyProperty WidgetInstanceIdProperty = DependencyProperty.Register("WidgetInstanceId", typeof(System.Int32), typeof(DashboardBusiness.MoveWidgetInstanceWorkflow));

        [DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)]
        [BrowsableAttribute(true)]
        [CategoryAttribute("Misc")]
        public Int32 WidgetInstanceId
        {
            get
            {
                return ((int)(base.GetValue(DashboardBusiness.MoveWidgetInstanceWorkflow.WidgetInstanceIdProperty)));
            }
            set
            {
                base.SetValue(DashboardBusiness.MoveWidgetInstanceWorkflow.WidgetInstanceIdProperty, value);
            }
        }

        public static DependencyProperty ColumnNoProperty = DependencyProperty.Register("ColumnNo", typeof(System.Int32), typeof(DashboardBusiness.MoveWidgetInstanceWorkflow));

        [DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)]
        [BrowsableAttribute(true)]
        [CategoryAttribute("Misc")]
        public Int32 ColumnNo
        {
            get
            {
                return ((int)(base.GetValue(DashboardBusiness.MoveWidgetInstanceWorkflow.ColumnNoProperty)));
            }
            set
            {
                base.SetValue(DashboardBusiness.MoveWidgetInstanceWorkflow.ColumnNoProperty, value);
            }
        }

        public static DependencyProperty RowNoProperty = DependencyProperty.Register("RowNo", typeof(System.Int32), typeof(DashboardBusiness.MoveWidgetInstanceWorkflow));

        [DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)]
        [BrowsableAttribute(true)]
        [CategoryAttribute("Misc")]
        public Int32 RowNo
        {
            get
            {
                return ((int)(base.GetValue(DashboardBusiness.MoveWidgetInstanceWorkflow.RowNoProperty)));
            }
            set
            {
                base.SetValue(DashboardBusiness.MoveWidgetInstanceWorkflow.RowNoProperty, value);
            }
        }
	}

}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect BT, UK (ex British Telecom)
United Kingdom United Kingdom

Comments and Discussions